34 lines
1.5 KiB
PHP
34 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace ContainerD4AQ4Ie;
|
|
|
|
use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
|
|
use Symfony\Component\DependencyInjection\ContainerInterface;
|
|
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
|
|
|
|
/**
|
|
* @internal This class has been auto-generated by the Symfony Dependency Injection Component.
|
|
*/
|
|
class getConsole_Command_ErrorDumperService extends App_KernelDevDebugContainer
|
|
{
|
|
/**
|
|
* Gets the private 'console.command.error_dumper' shared service.
|
|
*
|
|
* @return \Symfony\Component\ErrorHandler\Command\ErrorDumpCommand
|
|
*/
|
|
public static function do($container, $lazyLoad = true)
|
|
{
|
|
include_once \dirname(__DIR__, 4).'/vendor/symfony/console/Command/SignalableCommandInterface.php';
|
|
include_once \dirname(__DIR__, 4).'/vendor/symfony/console/Command/Command.php';
|
|
include_once \dirname(__DIR__, 4).'/vendor/symfony/error-handler/Command/ErrorDumpCommand.php';
|
|
include_once \dirname(__DIR__, 4).'/vendor/symfony/filesystem/Filesystem.php';
|
|
|
|
$container->privates['console.command.error_dumper'] = $instance = new \Symfony\Component\ErrorHandler\Command\ErrorDumpCommand(($container->privates['filesystem'] ??= new \Symfony\Component\Filesystem\Filesystem()), ($container->privates['twig.error_renderer.html'] ?? $container->load('getTwig_ErrorRenderer_HtmlService')), NULL);
|
|
|
|
$instance->setName('error:dump');
|
|
$instance->setDescription('Dump error pages to plain HTML files that can be directly served by a web server');
|
|
|
|
return $instance;
|
|
}
|
|
}
|