diff --git a/Command/HelpCommand.php b/Command/HelpCommand.php
index e704b9b2a..9bcd7764d 100644
--- a/Command/HelpCommand.php
+++ b/Command/HelpCommand.php
@@ -40,7 +40,7 @@ protected function configure()
new InputOption('format', null, InputOption::VALUE_REQUIRED, 'The output format (txt, xml, json, or md)', 'txt'),
new InputOption('raw', null, InputOption::VALUE_NONE, 'To output raw command help'),
])
- ->setDescription('Displays help for a command')
+ ->setDescription('Display help for a command')
->setHelp(<<<'EOF'
The %command.name% command displays help for a given command:
diff --git a/Command/ListCommand.php b/Command/ListCommand.php
index 284ddb5fe..36a5344b3 100644
--- a/Command/ListCommand.php
+++ b/Command/ListCommand.php
@@ -36,7 +36,7 @@ protected function configure()
new InputOption('raw', null, InputOption::VALUE_NONE, 'To output raw command list'),
new InputOption('format', null, InputOption::VALUE_REQUIRED, 'The output format (txt, xml, json, or md)', 'txt'),
])
- ->setDescription('Lists commands')
+ ->setDescription('List commands')
->setHelp(<<<'EOF'
The %command.name% command lists all commands:
diff --git a/Tests/Command/ListCommandTest.php b/Tests/Command/ListCommandTest.php
index a5d6653ad..869952f53 100644
--- a/Tests/Command/ListCommandTest.php
+++ b/Tests/Command/ListCommandTest.php
@@ -23,7 +23,7 @@ public function testExecuteListsCommands()
$commandTester = new CommandTester($command = $application->get('list'));
$commandTester->execute(['command' => $command->getName()], ['decorated' => false]);
- $this->assertMatchesRegularExpression('/help\s{2,}Displays help for a command/', $commandTester->getDisplay(), '->execute() returns a list of available commands');
+ $this->assertMatchesRegularExpression('/help\s{2,}Display help for a command/', $commandTester->getDisplay(), '->execute() returns a list of available commands');
}
public function testExecuteListsCommandsWithXmlOption()
@@ -40,8 +40,8 @@ public function testExecuteListsCommandsWithRawOption()
$commandTester = new CommandTester($command = $application->get('list'));
$commandTester->execute(['command' => $command->getName(), '--raw' => true]);
$output = <<<'EOF'
-help Displays help for a command
-list Lists commands
+help Display help for a command
+list List commands
EOF;
@@ -86,8 +86,8 @@ public function testExecuteListsCommandsOrder()
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
- help Displays help for a command
- list Lists commands
+ help Display help for a command
+ list List commands
0foo
0foo:bar 0foo:bar command
EOF;
@@ -103,8 +103,8 @@ public function testExecuteListsCommandsOrderRaw()
$commandTester = new CommandTester($command = $application->get('list'));
$commandTester->execute(['command' => $command->getName(), '--raw' => true]);
$output = <<<'EOF'
-help Displays help for a command
-list Lists commands
+help Display help for a command
+list List commands
0foo:bar 0foo:bar command
EOF;
diff --git a/Tests/Fixtures/application_1.json b/Tests/Fixtures/application_1.json
index bb1eab28e..e1985fb0f 100644
--- a/Tests/Fixtures/application_1.json
+++ b/Tests/Fixtures/application_1.json
@@ -6,7 +6,7 @@
"usage": [
"help [--format FORMAT] [--raw] [--] []"
],
- "description": "Displays help for a command",
+ "description": "Display help for a command",
"help": "The help<\/info> command displays help for a given command:\n\n app\/console help list<\/info>\n\nYou can also output the help in other formats by using the --format<\/comment> option:\n\n app\/console help --format=xml list<\/info>\n\nTo display the list of available commands, please use the list<\/info> command.",
"definition": {
"arguments": {
@@ -109,7 +109,7 @@
"usage": [
"list [--raw] [--format FORMAT] [--] []"
],
- "description": "Lists commands",
+ "description": "List commands",
"help": "The list<\/info> command lists all commands:\n\n app\/console list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n app\/console list test<\/info>\n\nYou can also output the information in other formats by using the --format<\/comment> option:\n\n app\/console list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n app\/console list --raw<\/info>",
"definition": {
"arguments": {
diff --git a/Tests/Fixtures/application_1.md b/Tests/Fixtures/application_1.md
index 38c84e4e2..afee6ea8d 100644
--- a/Tests/Fixtures/application_1.md
+++ b/Tests/Fixtures/application_1.md
@@ -7,7 +7,7 @@ Console Tool
`help`
------
-Displays help for a command
+Display help for a command
### Usage
@@ -119,7 +119,7 @@ Do not ask any interactive question
`list`
------
-Lists commands
+List commands
### Usage
diff --git a/Tests/Fixtures/application_1.txt b/Tests/Fixtures/application_1.txt
index cc5544724..b09764840 100644
--- a/Tests/Fixtures/application_1.txt
+++ b/Tests/Fixtures/application_1.txt
@@ -13,5 +13,5 @@ Console Tool
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
- help Displays help for a command
- list Lists commands
+ help Display help for a command
+ list List commands
diff --git a/Tests/Fixtures/application_1.xml b/Tests/Fixtures/application_1.xml
index 5b6a906c5..0dc09563f 100644
--- a/Tests/Fixtures/application_1.xml
+++ b/Tests/Fixtures/application_1.xml
@@ -5,7 +5,7 @@
help [--format FORMAT] [--raw] [--] [<command_name>]
- Displays help for a command
+ Display help for a command
The <info>help</info> command displays help for a given command:
<info>app/console help list</info>
@@ -60,7 +60,7 @@
list [--raw] [--format FORMAT] [--] [<namespace>]
- Lists commands
+ List commands
The <info>list</info> command lists all commands:
<info>app/console list</info>
diff --git a/Tests/Fixtures/application_2.json b/Tests/Fixtures/application_2.json
index ef8c99746..2c42070ec 100644
--- a/Tests/Fixtures/application_2.json
+++ b/Tests/Fixtures/application_2.json
@@ -10,7 +10,7 @@
"usage": [
"help [--format FORMAT] [--raw] [--] []"
],
- "description": "Displays help for a command",
+ "description": "Display help for a command",
"help": "The help<\/info> command displays help for a given command:\n\n app\/console help list<\/info>\n\nYou can also output the help in other formats by using the --format<\/comment> option:\n\n app\/console help --format=xml list<\/info>\n\nTo display the list of available commands, please use the list<\/info> command.",
"definition": {
"arguments": {
@@ -113,7 +113,7 @@
"usage": [
"list [--raw] [--format FORMAT] [--] []"
],
- "description": "Lists commands",
+ "description": "List commands",
"help": "The list<\/info> command lists all commands:\n\n app\/console list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n app\/console list test<\/info>\n\nYou can also output the information in other formats by using the --format<\/comment> option:\n\n app\/console list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n app\/console list --raw<\/info>",
"definition": {
"arguments": {
diff --git a/Tests/Fixtures/application_2.md b/Tests/Fixtures/application_2.md
index 5f957da37..5785f272d 100644
--- a/Tests/Fixtures/application_2.md
+++ b/Tests/Fixtures/application_2.md
@@ -20,7 +20,7 @@ My Symfony application v1.0
`help`
------
-Displays help for a command
+Display help for a command
### Usage
@@ -132,7 +132,7 @@ Do not ask any interactive question
`list`
------
-Lists commands
+List commands
### Usage
diff --git a/Tests/Fixtures/application_2.txt b/Tests/Fixtures/application_2.txt
index 0aab070b0..e314eeb07 100644
--- a/Tests/Fixtures/application_2.txt
+++ b/Tests/Fixtures/application_2.txt
@@ -13,8 +13,8 @@ My Symfony application v1.0
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
- help Displays help for a command
- list Lists commands
+ help Display help for a command
+ list List commands
descriptor
descriptor:command1 [alias1|alias2] command 1 description
descriptor:command2 command 2 description
diff --git a/Tests/Fixtures/application_2.xml b/Tests/Fixtures/application_2.xml
index 4ec76624a..926c49b28 100644
--- a/Tests/Fixtures/application_2.xml
+++ b/Tests/Fixtures/application_2.xml
@@ -5,7 +5,7 @@
help [--format FORMAT] [--raw] [--] [<command_name>]
- Displays help for a command
+ Display help for a command
The <info>help</info> command displays help for a given command:
<info>app/console help list</info>
@@ -60,7 +60,7 @@
list [--raw] [--format FORMAT] [--] [<namespace>]
- Lists commands
+ List commands
The <info>list</info> command lists all commands:
<info>app/console list</info>
diff --git a/Tests/Fixtures/application_mbstring.md b/Tests/Fixtures/application_mbstring.md
index 5d9b0881d..74ac56ed2 100644
--- a/Tests/Fixtures/application_mbstring.md
+++ b/Tests/Fixtures/application_mbstring.md
@@ -11,7 +11,7 @@ MbString åpplicätion
`help`
------
-Displays help for a command
+Display help for a command
### Usage
@@ -123,7 +123,7 @@ Do not ask any interactive question
`list`
------
-Lists commands
+List commands
### Usage
diff --git a/Tests/Fixtures/application_mbstring.txt b/Tests/Fixtures/application_mbstring.txt
index b3948eabd..b1e9d8f47 100644
--- a/Tests/Fixtures/application_mbstring.txt
+++ b/Tests/Fixtures/application_mbstring.txt
@@ -13,7 +13,7 @@ MbString åpplicätion
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
- help Displays help for a command
- list Lists commands
+ help Display help for a command
+ list List commands
descriptor
descriptor:åèä command åèä description
diff --git a/Tests/Fixtures/application_run1.txt b/Tests/Fixtures/application_run1.txt
index 8cbcf7a7a..1255d4f14 100644
--- a/Tests/Fixtures/application_run1.txt
+++ b/Tests/Fixtures/application_run1.txt
@@ -13,5 +13,5 @@ Options:
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
- help Displays help for a command
- list Lists commands
+ help Display help for a command
+ list List commands
diff --git a/Tests/Fixtures/application_run2.txt b/Tests/Fixtures/application_run2.txt
index b1b2e665c..8f1cbbf7a 100644
--- a/Tests/Fixtures/application_run2.txt
+++ b/Tests/Fixtures/application_run2.txt
@@ -1,5 +1,5 @@
Description:
- Lists commands
+ List commands
Usage:
list [options] [--] []
diff --git a/Tests/Fixtures/application_run3.txt b/Tests/Fixtures/application_run3.txt
index b1b2e665c..8f1cbbf7a 100644
--- a/Tests/Fixtures/application_run3.txt
+++ b/Tests/Fixtures/application_run3.txt
@@ -1,5 +1,5 @@
Description:
- Lists commands
+ List commands
Usage:
list [options] [--] []
diff --git a/Tests/Fixtures/application_run5.txt b/Tests/Fixtures/application_run5.txt
index 1cf8d1f8b..d4bc28e1d 100644
--- a/Tests/Fixtures/application_run5.txt
+++ b/Tests/Fixtures/application_run5.txt
@@ -1,5 +1,5 @@
Description:
- Displays help for a command
+ Display help for a command
Usage:
help [options] [--] []