From 4847d3ad35ef38ba661e65cfee2981a1d9501f15 Mon Sep 17 00:00:00 2001 From: kbond Date: Thu, 2 Feb 2012 11:47:41 -0500 Subject: [PATCH] renamed command --- ...nfigDumpCommand.php => ConfigDumpReferenceCommand.php} | 8 ++++---- .../DependencyInjection/MainConfiguration.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) rename src/Symfony/Bundle/FrameworkBundle/Command/{ConfigDumpCommand.php => ConfigDumpReferenceCommand.php} (97%) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpReferenceCommand.php similarity index 97% rename from src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpCommand.php rename to src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpReferenceCommand.php index be45676853..3243f2ee45 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpReferenceCommand.php @@ -24,7 +24,7 @@ use Symfony\Component\Config\Definition\BooleanNode; * * @author Kevin Bond */ -class ConfigDumpCommand extends ContainerDebugCommand +class ConfigDumpReferenceCommand extends ContainerDebugCommand { protected $output; @@ -37,7 +37,7 @@ class ConfigDumpCommand extends ContainerDebugCommand ->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(<<config:dump command dumps the default configuration for an extension/bundle. @@ -46,11 +46,11 @@ The extension alias or bundle name can be used: Example: - container:debug framework + %command.name% framework or - container:debug FrameworkBundle + %command.name% FrameworkBundle EOF ) diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/MainConfiguration.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/MainConfiguration.php index 3d5d3efb75..70065d8e17 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/MainConfiguration.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/MainConfiguration.php @@ -72,7 +72,7 @@ class MainConfiguration implements ConfigurationInterface ->end() ->end() ; - + $this->addAclSection($rootNode); $this->addEncodersSection($rootNode); $this->addProvidersSection($rootNode);