8000 [Console] harmonized commands documentation by changing ./app/console… · Modder/symfony@f2e4d35 · GitHub
[go: up one dir, main page]

Skip to content

Commit f2e4d35

Browse files
author
Hugo Hamon
committed
[Console] harmonized commands documentation by changing ./app/console to php app/console.
1 parent 41fe826 commit f2e4d35

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Symfony/Component/Console/Command/HelpCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ protected function configure()
4444
->setHelp(<<<EOF
4545
The <info>help</info> command displays help for a given command:
4646
47-
<info>./app/console help list</info>
47+
<info>php app/console help list</info>
4848
4949
You can also output the help as XML by using the <comment>--xml</comment> option:
5050
51-
<info>./app/console help --xml list</info>
51+
<info>php app/console help --xml list</info>
5252
EOF
5353
);
5454
}

src/Symfony/Component/Console/Command/ListCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ protected function configure()
4040
->setHelp(<<<EOF
4141
8FA8 The <info>list</info> command lists all commands:
4242
43-
<info>./app/console list</info>
43+
<info>php app/console list</info>
4444
4545
You can also display the commands for a specific namespace:
4646
47-
<info>./app/console list test</info>
47+
<info>php app/console list test</info>
4848
4949
You can also output the information as XML by using the <comment>--xml</comment> option:
5050
51-
<info>./app/console list --xml</info>
51+
<info>php app/console list --xml</info>
5252
EOF
5353
);
5454
}

0 commit comments

Comments
 (0)
0