浏览代码

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