Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.216.95.250
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
symfony /
http-kernel /
Controller /
Delete
Unzip
Name
Size
Permission
Date
Action
ArgumentResolver
[ DIR ]
drwxr-xr-x
2018-11-30 09:00
ArgumentResolver.php
3.49
KB
-rw-r--r--
2018-11-30 09:00
ArgumentResolverInterface.php
924
B
-rw-r--r--
2018-11-30 09:00
ArgumentValueResolverInterface.php
1.1
KB
-rw-r--r--
2018-11-30 09:00
ContainerControllerResolver.php
2.41
KB
-rw-r--r--
2018-11-30 09:00
ControllerReference.php
1.29
KB
-rw-r--r--
2018-11-30 09:00
ControllerResolver.php
6.7
KB
-rw-r--r--
2018-11-30 09:00
ControllerResolverInterface.php
1.32
KB
-rw-r--r--
2018-11-30 09:00
TraceableArgumentResolver.php
1.01
KB
-rw-r--r--
2018-11-30 09:00
TraceableControllerResolver.php
1011
B
-rw-r--r--
2018-11-30 09:00
Save
Rename
<?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\HttpKernel\Controller; use Symfony\Component\HttpFoundation\Request; /** * A ControllerResolverInterface implementation knows how to determine the * controller to execute based on a Request object. * * A Controller can be any valid PHP callable. * * @author Fabien Potencier <fabien@symfony.com> */ interface ControllerResolverInterface { /** * Returns the Controller instance associated with a Request. * * As several resolvers can exist for a single application, a resolver must * return false when it is not able to determine the controller. * * The resolver must only throw an exception when it should be able to load * controller but cannot because of some errors made by the developer. * * @return callable|false A PHP callable representing the Controller, * or false if this resolver is not able to determine the controller * * @throws \LogicException If a controller was found based on the request but it is not callable */ public function getController(Request $request); }