<?php
namespace Container8PLsRFM;
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_Authenticator_Jwt_JwtService extends App_KernelDevDebugContainer
{
/**
* Gets the private 'security.authenticator.jwt.jwt' shared service.
*
* @return \App\Security\JWTTokenAuthenticator
*
* @deprecated Since lexik/jwt-authentication-bundle 2.7: The "security.authenticator.jwt.jwt" service is deprecated and will be removed in 3.0, use the new "jwt" authenticator instead.
*/
public static function do($container, $lazyLoad = true)
{
trigger_deprecation('lexik/jwt-authentication-bundle', '2.7', 'The "security.authenticator.jwt.jwt" service is deprecated and will be removed in 3.0, use the new "jwt" authenticator instead.');
include_once \dirname(__DIR__, 4).'/vendor/lexik/jwt-authentication-bundle/TokenExtractor/TokenExtractorInterface.php';
include_once \dirname(__DIR__, 4).'/vendor/lexik/jwt-authentication-bundle/TokenExtractor/ChainTokenExtractor.php';
include_once \dirname(__DIR__, 4).'/vendor/lexik/jwt-authentication-bundle/TokenExtractor/AuthorizationHeaderTokenExtractor.php';
return $container->privates['security.authenticator.jwt.jwt'] = new \App\Security\JWTTokenAuthenticator(($container->services['lexik_jwt_authentication.jwt_manager'] ?? $container->getLexikJwtAuthentication_JwtManagerService()), ($container->services['event_dispatcher'] ?? $container->getEventDispatcherService()), new \Lexik\Bundle\JWTAuthenticationBundle\TokenExtractor\ChainTokenExtractor([0 => new \Lexik\Bundle\JWTAuthenticationBundle\TokenExtractor\AuthorizationHeaderTokenExtractor('Bearer', 'Authorization')]), ($container->privates['App\\Security\\UserApiProvider'] ?? $container->load('getUserApiProviderService')));
}
}