interface RouteCompilerInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/RouteCompilerInterface.php \Symfony\Component\Routing\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 - Contains \Drupal\Core\Routing\RouteCompiler.
File
- vendor/
symfony/ routing/ RouteCompilerInterface.php, line 19
Namespace
Symfony\Component\RoutingView source
interface RouteCompilerInterface {
/**
* Compiles the current route instance.
*
* @param Route $route A Route instance
*
* @return CompiledRoute A CompiledRoute instance
*
* @throws \LogicException If the Route cannot be compiled because the
* path or host pattern is invalid
*/
public static function compile(Route $route);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RouteCompilerInterface:: |
public static | function | Compiles the current route instance. | 1 |