Преглед на файлове

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