浏览代码

[Routing] removed the autoloading trick, which is not needed anymore

Fabien Potencier 14 年之前
父节点
当前提交
c39534e258
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php

+ 1 - 1
src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php

@@ -81,7 +81,7 @@ abstract class AnnotationClassLoader implements LoaderInterface
         }
 
         $class = new \ReflectionClass($class);
-        class_exists($annotClass = 'Symfony\\Component\\Routing\\Annotation\\Route');
+        $annotClass = 'Symfony\\Component\\Routing\\Annotation\\Route';
 
         $globals = array(
             'pattern'      => '',