diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php index 5cfed9be96..28f3328e44 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php @@ -92,7 +92,7 @@ class FrameworkExtension extends Extension $this->registerTemplatingConfiguration($config, $container); } - if (isset($config['test'])) { + if (array_key_exists('test', $config)) { $this->registerTestConfiguration($config, $container); }