diff options
Diffstat (limited to 'src/Support')
-rw-r--r-- | src/Support/RouteLoader.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Support/RouteLoader.php b/src/Support/RouteLoader.php deleted file mode 100644 index ba124c5..0000000 --- a/src/Support/RouteLoader.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php - -namespace App\Support; - -use Symfony\Component\Routing\Loader\AnnotationClassLoader; -use Symfony\Component\Routing\Route; - -class RouteLoader extends AnnotationClassLoader -{ - protected function configureRoute(Route $route, \ReflectionClass $class, \ReflectionMethod $method, object $annotation) { - $route->setDefault('_', compact('class', 'method', 'annotation')); - } - - protected function getDefaultRouteName(\ReflectionClass $class, \ReflectionMethod $method) - { - $name = parent::getDefaultRouteName($class, $method); - - return str_replace( - '_', - '.', - str_replace('app_controller_', '', $name) - ); - } -} |