46 lines
2.1 KiB
PHP
46 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace Container42u2Kkn;
|
|
|
|
use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
|
|
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/ServicesResetter.php';
|
|
|
|
return $container->services['services_resetter'] = new \Symfony\Component\HttpKernel\DependencyInjection\ServicesResetter(new RewindableGenerator(function () use ($container) {
|
|
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 (false) {
|
|
yield 'cache.validator' => null;
|
|
}
|
|
if (false) {
|
|
yield 'cache.serializer' => null;
|
|
}
|
|
if (isset($container->privates['cache.annotations'])) {
|
|
yield 'cache.annotations' => ($container->privates['cache.annotations'] ?? null);
|
|
}
|
|
if (false) {
|
|
yield 'cache.property_info' => null;
|
|
}
|
|
}, function () use ($container) {
|
|
return 0 + (int) (isset($container->services['cache.app'])) + (int) (isset($container->services['cache.system'])) + (int) (false) + (int) (false) + (int) (isset($container->privates['cache.annotations'])) + (int) (false);
|
|
}), ['cache.app' => [0 => 'reset'], 'cache.system' => [0 => 'reset'], 'cache.validator' => [0 => 'reset'], 'cache.serializer' => [0 => 'reset'], 'cache.annotations' => [0 => 'reset'], 'cache.property_info' => [0 => 'reset']]);
|
|
}
|
|
}
|