<?php
namespace ContainerN0AJTP2;
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 getUserServiceService extends App_KernelDevDebugContainer
{
/**
* Gets the public 'App\Service\UserService' shared autowired service.
*
* @return \App\Service\UserService
*/
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/src/Service/UserService.php';
include_once \dirname(__DIR__, 4).'/vendor/symfony/password-hasher/Hasher/UserPasswordHasherInterface.php';
include_once \dirname(__DIR__, 4).'/vendor/symfony/password-hasher/Hasher/UserPasswordHasher.php';
$a = ($container->services['App\\Repository\\UserRepository'] ?? $container->load('getUserRepositoryService'));
if (isset($container->services['App\\Service\\UserService'])) {
return $container->services['App\\Service\\UserService'];
}
$b = ($container->services['App\\Service\\BaseService'] ?? $container->getBaseServiceService());
if (isset($container->services['App\\Service\\UserService'])) {
return $container->services['App\\Service\\UserService'];
}
return $container->services['App\\Service\\UserService'] = new \App\Service\UserService($a, $b, ($container->services['.container.private.security.password_encoder'] ?? $container->load('get_Container_Private_Security_PasswordEncoderService')), new \Symfony\Component\PasswordHasher\Hasher\UserPasswordHasher(($container->privates['security.password_hasher_factory'] ?? $container->load('getSecurity_PasswordHasherFactoryService'))), ($container->services['Symfony\\Component\\Security\\Http\\LoginLink\\LoginLinkHandlerInterface $clientFirewallLoginLinkHandler'] ?? $container->load('getLoginLinkHandlerInterfaceclientFirewallLoginLinkHandlerService')), ($container->services['translator'] ?? $container->getTranslatorService()));
}
}