/var/www/flurhymez/vendor/symfony/routing
NameSizeModeActions
Annotation/-0755rm
DependencyInjection/-0755rm
Exception/-0755rm
Generator/-0755rm
Loader/-0755rm
Matcher/-0755rm
Alias.php25830644editdlrm
CHANGELOG.md122780644editdlrm
CompiledRoute.php43200644editdlrm
composer.json16460644editdlrm
LICENSE10650644editdlrm
README.md15270644editdlrm
RequestContext.php68600644editdlrm
RequestContextAwareInterface.php5460644editdlrm
Route.php124860644editdlrm
RouteCollection.php109270644editdlrm
RouteCollectionBuilder.php96730644editdlrm
RouteCompiler.php148500644editdlrm
RouteCompilerInterface.php7540644editdlrm
Router.php125530644editdlrm
RouterInterface.php10150644editdlrm
Edit: /var/www/flurhymez/vendor/symfony/routing/RouteCompilerInterface.php (754B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Routing; /** * RouteCompilerInterface is the interface that all RouteCompiler classes must implement. * * @author Fabien Potencier */ interface RouteCompilerInterface { /** * Compiles the current route instance. * * @return CompiledRoute * * @throws \LogicException If the Route cannot be compiled because the * path or host pattern is invalid */ public static function compile(Route $route); }