Corrected help text from './symfony' to 'php app/console'

This commit is contained in:
Paul 2011-07-04 20:06:30 +02:00
parent 311a9bd02b
commit 836134620b
2 changed files with 5 additions and 5 deletions

View File

@ -44,11 +44,11 @@ class HelpCommand extends Command
->setHelp(<<<EOF ->setHelp(<<<EOF
The <info>help</info> command displays help for a given command: The <info>help</info> command displays help for a given command:
<info>./symfony help list</info> <info>php app/console help list</info>
You can also output the help as XML by using the <comment>--xml</comment> option: You can also output the help as XML by using the <comment>--xml</comment> option:
<info>./symfony help --xml list</info> <info>php app/console help --xml list</info>
EOF EOF
); );
} }

View File

@ -40,15 +40,15 @@ class ListCommand extends Command
->setHelp(<<<EOF ->setHelp(<<<EOF
The <info>list</info> command lists all commands: The <info>list</info> command lists all commands:
<info>./symfony list</info> <info>php app/console list</info>
You can also display the commands for a specific namespace: You can also display the commands for a specific namespace:
<info>./symfony list test</info> <info>php app/console list test</info>
You can also output the information as XML by using the <comment>--xml</comment> option: You can also output the information as XML by using the <comment>--xml</comment> option:
<info>./symfony list --xml</info> <info>php app/console list --xml</info>
EOF EOF
); );
} }