From 385075cda3832f69425b9bb47d39eeca899021a2 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sun, 5 Feb 2012 22:38:42 +0100 Subject: [PATCH] Cosmetic fixes --- src/Composer/Command/SearchCommand.php | 2 +- src/Composer/Command/ShowCommand.php | 2 +- src/Composer/Command/ValidateCommand.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Composer/Command/SearchCommand.php b/src/Composer/Command/SearchCommand.php index 10df68e35..c7c6ebd3d 100644 --- a/src/Composer/Command/SearchCommand.php +++ b/src/Composer/Command/SearchCommand.php @@ -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'), )) diff --git a/src/Composer/Command/ShowCommand.php b/src/Composer/Command/ShowCommand.php index 334cd8997..9de3ed2de 100644 --- a/src/Composer/Command/ShowCommand.php +++ b/src/Composer/Command/ShowCommand.php @@ -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'), diff --git a/src/Composer/Command/ValidateCommand.php b/src/Composer/Command/ValidateCommand.php index 5e244feff..692b6a323 100644 --- a/src/Composer/Command/ValidateCommand.php +++ b/src/Composer/Command/ValidateCommand.php @@ -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') ))