merged branch sbusch/patch-1 (PR #3526)

Commits
-------

afbb8f2 Fixed misleading help for "name" argument as search for services with wildcards is not implemented

Discussion
----------

[FrameworkBundle, Console] Changed help text for container:debug command

Fixed help for "name" argument as search for services with wildcards is not implemented in ContainerDebugCommand
This commit is contained in:
Fabien Potencier 2012-03-07 19:37:32 +01:00
commit f6353b8c7d

View File

@ -41,7 +41,7 @@ class ContainerDebugCommand extends ContainerAwareCommand
{
$this
->setDefinition(array(
new InputArgument('name', InputArgument::OPTIONAL, 'A service name (foo) or search (foo*)'),
new InputArgument('name', InputArgument::OPTIONAL, 'A service name (foo)'),
new InputOption('show-private', null, InputOption::VALUE_NONE, 'Use to show public *and* private services'),
))
->setName('container:debug')