1
0
Fork 0

Cosmetic fixes

pull/229/merge
Jordi Boggiano 2012-02-05 22:38:42 +01:00
parent 26e909a1a0
commit 385075cda3
3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ class SearchCommand extends Command
{
$this
->setName('search')
->setDescription('search for packages')
->setDescription('Search for packages')
->setDefinition(array(
new InputArgument('tokens', InputArgument::IS_ARRAY | InputArgument::REQUIRED, 'tokens to search for'),
))

View File

@ -28,7 +28,7 @@ class ShowCommand extends Command
{
$this
->setName('show')
->setDescription('show package details')
->setDescription('Show package details')
->setDefinition(array(
new InputArgument('package', InputArgument::REQUIRED, 'the package to inspect'),
new InputArgument('version', InputArgument::OPTIONAL, 'the version'),

View File

@ -28,7 +28,7 @@ class ValidateCommand extends Command
{
$this
->setName('validate')
->setDescription('validates a composer.json')
->setDescription('Validates a composer.json')
->setDefinition(array(
new InputArgument('file', InputArgument::OPTIONAL, 'path to composer.json file', './composer.json')
))