caisse-bliss/var/cache/dev/ContainerCWF53NS/getNotifier_TransportFactory_NullService.php

33 lines
1.4 KiB
PHP

<?php
namespace ContainerCWF53NS;
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 getNotifier_TransportFactory_NullService extends App_KernelDevDebugContainer
{
/**
* Gets the private 'notifier.transport_factory.null' shared service.
*
* @return \Symfony\Component\Notifier\Transport\NullTransportFactory
*/
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/notifier/Transport/TransportFactoryInterface.php';
include_once \dirname(__DIR__, 4).'/vendor/symfony/notifier/Transport/AbstractTransportFactory.php';
include_once \dirname(__DIR__, 4).'/vendor/symfony/notifier/Transport/NullTransportFactory.php';
$a = ($container->services['event_dispatcher'] ?? $container->getEventDispatcherService());
if (isset($container->privates['notifier.transport_factory.null'])) {
return $container->privates['notifier.transport_factory.null'];
}
return $container->privates['notifier.transport_factory.null'] = new \Symfony\Component\Notifier\Transport\NullTransportFactory($a, ($container->privates['.debug.http_client'] ?? $container->get_Debug_HttpClientService()));
}
}