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);