Skip to content

Commit

Permalink
renamed command
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond committed Feb 2, 2012
1 parent e97af0b commit 4847d3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -24,7 +24,7 @@
*
* @author Kevin Bond <kevinbond@gmail.com>
*/
class ConfigDumpCommand extends ContainerDebugCommand
class ConfigDumpReferenceCommand extends ContainerDebugCommand
{
protected $output;

Expand All @@ -37,7 +37,7 @@ protected function configure()
->setDefinition(array(
new InputArgument('name', InputArgument::REQUIRED, 'The Bundle or extension alias')
))
->setName('config:dump')
->setName('config:dump-reference')
->setDescription('Dumps default configuration for an extension.')
->setHelp(<<<EOF
The <info>config:dump</info> command dumps the default configuration for an extension/bundle.
Expand All @@ -46,11 +46,11 @@ protected function configure()
Example:
<info>container:debug framework</info>
<info>%command.name% framework</info>
or
<info>container:debug FrameworkBundle</info>
<info>%command.name% FrameworkBundle</info>
EOF
)
Expand Down
Expand Up @@ -72,7 +72,7 @@ public function getConfigTreeBuilder()
->end()
->end()
;

$this->addAclSection($rootNode);
$this->addEncodersSection($rootNode);
$this->addProvidersSection($rootNode);
Expand Down

0 comments on commit 4847d3a

Please sign in to comment.