소스 검색

[FrameworkBundle] fixed inclusion of the test client

Fabien Potencier 14 년 전
부모
커밋
a46ca47c03
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php

+ 1 - 1
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);
         }