소스 검색

[FrameworkBundle] fixed cache:clear command for non-namespaced AppKernel classes

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

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php

@@ -137,7 +137,7 @@ EOF;
         require_once $file;
         @unlink($file);
 
-        $class = "\\$namespace\\$class"; 
+        $class = "$namespace\\$class"; 
 
         return new $class($parent->getEnvironment(), $debug);
     }