1
0
Fork 0

Use null as default values rather than false

Also made archive() in the ArchiveCommand protected as it does not need
to be used from the outside. The ArchiveManager can be used instead.
pull/1567/head
Nils Adermann 2013-03-28 12:05:08 +01:00
parent 14ee67bed4
commit 870a87f6d6
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ EOT
);
}
public function archive(IOInterface $io, $packageName = false, $version = false, $format = 'tar', $dest = '.')
protected function archive(IOInterface $io, $packageName = null, $version = null, $format = 'tar', $dest = '.')
{
$config = Factory::createConfig();
$factory = new Factory;
@ -91,7 +91,7 @@ EOT
return 0;
}
protected function selectPackage(IOInterface $io, $packageName, $version = false)
protected function selectPackage(IOInterface $io, $packageName, $version = null)
{
$io->write('<info>Searching for the specified package.</info>');