You are here

protected function AnnotationClassLoader::createRoute in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/Loader/AnnotationClassLoader.php \Symfony\Component\Routing\Loader\AnnotationClassLoader::createRoute()
1 call to AnnotationClassLoader::createRoute()
AnnotationClassLoader::addRoute in vendor/symfony/routing/Loader/AnnotationClassLoader.php

File

vendor/symfony/routing/Loader/AnnotationClassLoader.php, line 262

Class

AnnotationClassLoader
AnnotationClassLoader loads routing information from a PHP class and its methods.

Namespace

Symfony\Component\Routing\Loader

Code

protected function createRoute($path, $defaults, $requirements, $options, $host, $schemes, $methods, $condition) {
  return new Route($path, $defaults, $requirements, $options, $host, $schemes, $methods, $condition);
}