1
0
Fork 0

Add blank line to output for FileDownloader.

The VcsDownloader outputs a blank line between each dependency:

745dcbce33/src/Composer/Downloader/VcsDownloader.php (L80)

This write makes output consistent.
pull/3122/head
Garth Kerr 2014-07-12 15:05:06 -04:00
parent e77435cd0c
commit dc90397d1e
1 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,8 @@ class FileDownloader implements DownloaderInterface
}
}
}
$this->io->write('');
}
protected function doDownload(PackageInterface $package, $path, $url)