<?php
namespace ContainerNPdmxdp;
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 getSecurity_Authentication_Provider_Guard_UvdeskApiService extends App_KernelDevDebugContainer
{
/**
* Gets the private 'security.authentication.provider.guard.uvdesk_api' shared service.
*
* @return \Symfony\Component\Security\Guard\Provider\GuardAuthenticationProvider
*
* @deprecated Since symfony/security-bundle 5.3: The "security.authentication.provider.guard.uvdesk_api" service is deprecated, use the new authenticator system instead.
*/
public static function do($container, $lazyLoad = true)
{
trigger_deprecation('symfony/security-bundle', '5.3', 'The "security.authentication.provider.guard.uvdesk_api" service is deprecated, use the new authenticator system instead.');
include_once \dirname(__DIR__, 4).'/vendor/symfony/password-hasher/Hasher/UserPasswordHasherInterface.php';
include_once \dirname(__DIR__, 4).'/vendor/symfony/password-hasher/Hasher/UserPasswordHasher.php';
include_once \dirname(__DIR__, 4).'/vendor/symfony/security-core/User/UserCheckerInterface.php';
include_once \dirname(__DIR__, 4).'/vendor/symfony/security-core/User/InMemoryUserChecker.php';
$a = ($container->privates['Webkul\\UVDesk\\ApiBundle\\Providers\\ApiCredentials'] ?? $container->load('getApiCredentialsService'));
if (isset($container->privates['security.authentication.provider.guard.uvdesk_api'])) {
return $container->privates['security.authentication.provider.guard.uvdesk_api'];
}
return $container->privates['security.authentication.provider.guard.uvdesk_api'] = new \Symfony\Component\Security\Guard\Provider\GuardAuthenticationProvider(new RewindableGenerator(function () use ($container) {
yield 0 => ($container->privates['Webkul\\UVDesk\\ApiBundle\\Security\\Guards\\APIGuard'] ?? $container->load('getAPIGuardService'));
}, 1), $a, 'uvdesk_api', ($container->privates['security.user_checker'] ?? ($container->privates['security.user_checker'] = new \Symfony\Component\Security\Core\User\InMemoryUserChecker())), new \Symfony\Component\PasswordHasher\Hasher\UserPasswordHasher(($container->privates['security.password_hasher_factory'] ?? $container->load('getSecurity_PasswordHasherFactoryService'))));
}
}