interface RouteCompilerInterface
RouteCompilerInterface is the interface that all RouteCompiler classes must implement.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- interface \Symfony\Component\Routing\RouteCompilerInterface
Expanded class hierarchy of RouteCompilerInterface
All classes that implement RouteCompilerInterface
1 file declares its use of RouteCompilerInterface
- RouteCompiler.php in core/
lib/ Drupal/ Core/ Routing/ RouteCompiler.php
File
-
vendor/
symfony/ routing/ RouteCompilerInterface.php, line 19
Namespace
Symfony\Component\RoutingView source
interface RouteCompilerInterface {
/**
* Compiles the current route instance.
*
* @throws \LogicException If the Route cannot be compiled because the
* path or host pattern is invalid
*/
public static function compile(Route $route) : CompiledRoute;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
RouteCompilerInterface::compile | public static | function | Compiles the current route instance. | 1 |