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 : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
error-handler /
Delete
Unzip
Name
Size
Permission
Date
Action
Error
[ DIR ]
drwxrwxr-x
2022-07-29 07:37
ErrorEnhancer
[ DIR ]
drwxrwxr-x
2022-07-29 07:37
ErrorRenderer
[ DIR ]
drwxrwxr-x
2022-07-29 07:37
Exception
[ DIR ]
drwxrwxr-x
2022-07-29 07:37
Internal
[ DIR ]
drwxrwxr-x
2022-07-29 07:37
Resources
[ DIR ]
drwxrwxr-x
2022-07-29 07:37
BufferingLogger.php
1.99
KB
-rw-rw-r--
2022-07-29 07:37
CHANGELOG.md
636
B
-rw-rw-r--
2022-07-29 07:37
Debug.php
1.08
KB
-rw-rw-r--
2022-07-29 07:37
DebugClassLoader.php
45.43
KB
-rw-rw-r--
2022-07-29 07:37
ErrorHandler.php
29.17
KB
-rw-rw-r--
2022-07-29 07:37
LICENSE
1.04
KB
-rw-rw-r--
2022-07-29 07:37
README.md
1.31
KB
-rw-rw-r--
2022-07-29 07:37
ThrowableUtils.php
895
B
-rw-rw-r--
2022-07-29 07:37
composer.json
1.01
KB
-rw-rw-r--
2022-07-29 07:37
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\ErrorHandler; use Symfony\Component\ErrorHandler\Exception\SilencedErrorContext; /** * @internal */ class ThrowableUtils { /** * @param SilencedErrorContext|\Throwable */ public static function getSeverity($throwable): int { if ($throwable instanceof \ErrorException || $throwable instanceof SilencedErrorContext) { return $throwable->getSeverity(); } if ($throwable instanceof \ParseError) { return \E_PARSE; } if ($throwable instanceof \TypeError) { return \E_RECOVERABLE_ERROR; } return \E_ERROR; } }