File Manager Lite
Dir:
/home/u540325668/domains/mkjsindia.org/public_html/vendor/symfony/routing
Upload
[..]
.gitattributes (79 B)
Edit
Rename
Del
Annotation/
Rename
Del
CHANGELOG.md (10.38 KB)
Edit
Rename
Del
CompiledRoute.php (4.44 KB)
Edit
Rename
Del
DependencyInjection/
Rename
Del
Exception/
Rename
Del
Generator/
Rename
Del
LICENSE (1.04 KB)
Edit
Rename
Del
Loader/
Rename
Del
Matcher/
Rename
Del
README.md (505 B)
Edit
Rename
Del
RequestContext.php (6.79 KB)
Edit
Rename
Del
RequestContextAwareInterface.php (558 B)
Edit
Rename
Del
Route.php (14.19 KB)
Edit
Rename
Del
RouteCollection.php (7.71 KB)
Edit
Rename
Del
RouteCollectionBuilder.php (9.56 KB)
Edit
Rename
Del
RouteCompiler.php (14.21 KB)
Edit
Rename
Del
RouteCompilerInterface.php (779 B)
Edit
Rename
Del
Router.php (15.38 KB)
Edit
Rename
Del
RouterInterface.php (1.02 KB)
Edit
Rename
Del
composer.json (1.6 KB)
Edit
Rename
Del
Edit: RouteCompilerInterface.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * 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 <fabien@symfony.com> */ 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); }
Simpan