64 lines
4.2 KiB
PHP
64 lines
4.2 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 getServicesResetterService extends App_KernelDevDebugContainer
|
|
{
|
|
/**
|
|
* Gets the public 'services_resetter' shared service.
|
|
*
|
|
* @return \Symfony\Component\HttpKernel\DependencyInjection\ServicesResetter
|
|
*/
|
|
public static function do($container, $lazyLoad = true)
|
|
{
|
|
include_once \dirname(__DIR__, 4).'/vendor/symfony/http-kernel/DependencyInjection/ServicesResetterInterface.php';
|
|
include_once \dirname(__DIR__, 4).'/vendor/symfony/http-kernel/DependencyInjection/ServicesResetter.php';
|
|
|
|
return $container->services['services_resetter'] = new \Symfony\Component\HttpKernel\DependencyInjection\ServicesResetter(new RewindableGenerator(function () use ($container) {
|
|
if (isset($container->services['request_stack'])) {
|
|
yield 'request_stack' => ($container->services['request_stack'] ?? null);
|
|
}
|
|
if (isset($container->privates['container.env_var_processor'])) {
|
|
yield 'container.env_var_processor' => ($container->privates['container.env_var_processor'] ?? null);
|
|
}
|
|
if (isset($container->services['cache.app'])) {
|
|
yield 'cache.app' => ($container->services['cache.app'] ?? null);
|
|
}
|
|
if (isset($container->services['cache.system'])) {
|
|
yield 'cache.system' => ($container->services['cache.system'] ?? null);
|
|
}
|
|
if (isset($container->privates['cache.validator'])) {
|
|
yield 'cache.validator' => ($container->privates['cache.validator'] ?? null);
|
|
}
|
|
if (isset($container->privates['cache.serializer'])) {
|
|
yield 'cache.serializer' => ($container->privates['cache.serializer'] ?? null);
|
|
}
|
|
if (isset($container->privates['cache.property_info'])) {
|
|
yield 'cache.property_info' => ($container->privates['cache.property_info'] ?? null);
|
|
}
|
|
if (isset($container->services['debug.stopwatch'])) {
|
|
yield 'debug.stopwatch' => ($container->services['debug.stopwatch'] ?? null);
|
|
}
|
|
if (isset($container->services['event_dispatcher'])) {
|
|
yield 'debug.event_dispatcher' => ($container->services['event_dispatcher'] ?? null);
|
|
}
|
|
if (isset($container->privates['session_listener'])) {
|
|
yield 'session_listener' => ($container->privates['session_listener'] ?? null);
|
|
}
|
|
if (isset($container->services['.container.private.profiler'])) {
|
|
yield 'profiler' => ($container->services['.container.private.profiler'] ?? null);
|
|
}
|
|
if (isset($container->privates['twig'])) {
|
|
yield 'twig' => ($container->privates['twig'] ?? null);
|
|
}
|
|
}, fn () => 0 + (int) (isset($container->services['request_stack'])) + (int) (isset($container->privates['container.env_var_processor'])) + (int) (isset($container->services['cache.app'])) + (int) (isset($container->services['cache.system'])) + (int) (isset($container->privates['cache.validator'])) + (int) (isset($container->privates['cache.serializer'])) + (int) (isset($container->privates['cache.property_info'])) + (int) (isset($container->services['debug.stopwatch'])) + (int) (isset($container->services['event_dispatcher'])) + (int) (isset($container->privates['session_listener'])) + (int) (isset($container->services['.container.private.profiler'])) + (int) (isset($container->privates['twig']))), ['request_stack' => ['?resetRequestFormats'], 'container.env_var_processor' => ['reset'], 'cache.app' => ['reset'], 'cache.system' => ['reset'], 'cache.validator' => ['reset'], 'cache.serializer' => ['reset'], 'cache.property_info' => ['reset'], 'debug.stopwatch' => ['reset'], 'debug.event_dispatcher' => ['reset'], 'session_listener' => ['reset'], 'profiler' => ['reset'], 'twig' => ['resetGlobals']]);
|
|
}
|
|
}
|