/home/techb158/ileadtechnology.com/SSM/vendor/symfony/routing
NameSizeModeActions
Annotation/-0755rm
DependencyInjection/-0755rm
Exception/-0755rm
Generator/-0755rm
Loader/-0755rm
Matcher/-0755rm
CHANGELOG.md110240644editdlrm
CompiledRoute.php44350644editdlrm
composer.json16090644editdlrm
LICENSE10650644editdlrm
README.md4990644editdlrm
RequestContext.php64320644editdlrm
RequestContextAwareInterface.php5580644editdlrm
Route.php144180644editdlrm
RouteCollection.php69920644editdlrm
RouteCollectionBuilder.php93810644editdlrm
RouteCompiler.php150150644editdlrm
RouteCompilerInterface.php7790644editdlrm
Router.php124260644editdlrm
RouterInterface.php10420644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/symfony/routing/RouteCompilerInterface.php (779B)
* * 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 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); }