Файловый менеджер - Редактировать - /home/avadvi5/calendar.aeronextgen.com/debug-bundle.zip
Ðазад
PK �n�\dD9jb b DebugBundle.phpnu �[��� <?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\Bundle\DebugBundle; use Symfony\Bundle\DebugBundle\DependencyInjection\Compiler\DumpDataCollectorPass; use Symfony\Component\Console\Application; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Bundle\Bundle; use Symfony\Component\VarDumper\VarDumper; /** * @author Nicolas Grekas <p@tchwork.com> */ class DebugBundle extends Bundle { public function boot(): void { if ($this->container->getParameter('kernel.debug')) { $container = $this->container; // This code is here to lazy load the dump stack. This default // configuration is overridden in CLI mode on 'console.command' event. // The dump data collector is used by default, so dump output is sent to // the WDT. In a CLI context, if dump is used too soon, the data collector // will buffer it, and release it at the end of the script. VarDumper::setHandler(function ($var, ?string $label = null) use ($container) { $dumper = $container->get('data_collector.dump'); $cloner = $container->get('var_dumper.cloner'); $handler = function ($var, ?string $label = null) use ($dumper, $cloner) { $var = $cloner->cloneVar($var); if (null !== $label) { $var = $var->withContext(['label' => $label]); } $dumper->dump($var); }; VarDumper::setHandler($handler); $handler($var, $label); }); } } public function build(ContainerBuilder $container): void { parent::build($container); $container->addCompilerPass(new DumpDataCollectorPass()); } public function registerCommands(Application $application): void { // noop } } PK �n�\���S error_lognu �[��� [08-Apr-2025 10:08:32 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php:23 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php on line 23 [13-Apr-2025 19:41:45 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php:23 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php on line 23 [19-Apr-2025 03:37:35 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php:23 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php on line 23 [24-Apr-2025 18:12:21 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php:23 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php on line 23 [08-May-2025 20:27:15 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php:23 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php on line 23 [12-May-2025 13:26:35 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php:23 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php on line 23 [12-May-2025 23:20:12 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php:23 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php on line 23 [14-May-2025 00:24:19 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php:23 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DebugBundle.php on line 23 PK �n�\~F�Ψ � CHANGELOG.mdnu �[��� CHANGELOG ========= 4.1.0 ----- * Added the `server:dump` command to run a server collecting and displaying dumps on a single place with multiple formats support PK �n�\'�� � README.mdnu �[��� DebugBundle =========== DebugBundle provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework. Resources --------- * [Contributing](https://symfony.com/doc/current/contributing/index.html) * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) in the [main Symfony repository](https://github.com/symfony/symfony) PK �n�\�.�z, , LICENSEnu �[��� Copyright (c) 2014-present Fabien Potencier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK �n�\���n n DependencyInjection/error_lognu �[��� [11-Apr-2025 00:46:26 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php:22 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php on line 22 [11-Apr-2025 02:04:12 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\DependencyInjection\Extension\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php on line 27 [19-Apr-2025 17:16:24 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\DependencyInjection\Extension\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php on line 27 [20-Apr-2025 00:59:43 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php:22 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php on line 22 [22-Apr-2025 04:27:40 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\DependencyInjection\Extension\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php on line 27 [22-Apr-2025 10:45:28 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php:22 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php on line 22 [27-Apr-2025 19:37:15 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php:22 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php on line 22 [27-Apr-2025 23:49:06 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\DependencyInjection\Extension\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php on line 27 [13-May-2025 07:48:00 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php:22 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php on line 22 [13-May-2025 08:11:05 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\DependencyInjection\Extension\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php on line 27 [13-May-2025 23:49:17 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\DependencyInjection\Extension\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/DebugExtension.php on line 27 [14-May-2025 01:06:16 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php:22 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/debug-bundle/DependencyInjection/Configuration.php on line 22 PK �n�\}�!)� � &