X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/symfony/routing
home
/
prisjneg
/
public_html
/
vendor
/
symfony
/
routing
/
📁
..
📄
Alias.php
(2.5 KB)
📁
Annotation
📁
Attribute
📄
CHANGELOG.md
(13.5 KB)
📄
CompiledRoute.php
(4.14 KB)
📁
DependencyInjection
📁
Exception
📁
Generator
📄
LICENSE
(1.04 KB)
📁
Loader
📁
Matcher
📄
README.md
(1.93 KB)
📄
RequestContext.php
(6.58 KB)
📄
RequestContextAwareInterface.php
(552 B)
📁
Requirement
📄
Route.php
(11.99 KB)
📄
RouteCollection.php
(10.79 KB)
📄
RouteCompiler.php
(14.41 KB)
📄
RouteCompilerInterface.php
(733 B)
📄
Router.php
(11.82 KB)
📄
RouterInterface.php
(1015 B)
📄
composer.json
(1.28 KB)
Editing: 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. * * @throws \LogicException If the Route cannot be compiled because the * path or host pattern is invalid */ public static function compile(Route $route): CompiledRoute; }
Upload File
Create Folder