renamed command

This commit is contained in:
kbond 2012-02-02 11:47:41 -05:00
parent e97af0bac0
commit 4847d3ad35
2 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@ use Symfony\Component\Config\Definition\BooleanNode;
* *
* @author Kevin Bond <kevinbond@gmail.com> * @author Kevin Bond <kevinbond@gmail.com>
*/ */
class ConfigDumpCommand extends ContainerDebugCommand class ConfigDumpReferenceCommand extends ContainerDebugCommand
{ {
protected $output; protected $output;
@ -37,7 +37,7 @@ class ConfigDumpCommand extends ContainerDebugCommand
->setDefinition(array( ->setDefinition(array(
new InputArgument('name', InputArgument::REQUIRED, 'The Bundle or extension alias') new InputArgument('name', InputArgument::REQUIRED, 'The Bundle or extension alias')
)) ))
->setName('config:dump') ->setName('config:dump-reference')
->setDescription('Dumps default configuration for an extension.') ->setDescription('Dumps default configuration for an extension.')
->setHelp(<<<EOF ->setHelp(<<<EOF
The <info>config:dump</info> command dumps the default configuration for an extension/bundle. The <info>config:dump</info> command dumps the default configuration for an extension/bundle.
@ -46,11 +46,11 @@ The extension alias or bundle name can be used:
Example: Example:
<info>container:debug framework</info> <info>%command.name% framework</info>
or or
<info>container:debug FrameworkBundle</info> <info>%command.name% FrameworkBundle</info>
EOF EOF
) )

View File

@ -72,7 +72,7 @@ class MainConfiguration implements ConfigurationInterface
->end() ->end()
->end() ->end()
; ;
$this->addAclSection($rootNode); $this->addAclSection($rootNode);
$this->addEncodersSection($rootNode); $this->addEncodersSection($rootNode);
$this->addProvidersSection($rootNode); $this->addProvidersSection($rootNode);