소스 검색

[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'      => '',