<?phpnamespace ContainerXItpFJU;include_once \dirname(__DIR__, 4).'/vendor/symfony/security-http/Authenticator/AuthenticatorInterface.php';include_once \dirname(__DIR__, 4).'/vendor/symfony/security-http/Authenticator/AbstractAuthenticator.php';include_once \dirname(__DIR__, 4).'/src/Security/JWTTokenAuthenticator.php';class JWTTokenAuthenticator_3af84d5 extends \App\Security\JWTTokenAuthenticator implements \ProxyManager\Proxy\VirtualProxyInterface{ /** * @var \App\Security\JWTTokenAuthenticator|null wrapped object, if the proxy is initialized */ private $valueHolder4046c = null; /** * @var \Closure|null initializer responsible for generating the wrapped object */ private $initializer9f5cb = null; /** * @var bool[] map of public properties of the parent class */ private static $publicProperties2dd98 = [ ]; public function supports(\Symfony\Component\HttpFoundation\Request $request) : ?bool { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'supports', array('request' => $request), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return $this->valueHolder4046c->supports($request); } public function authenticate(\Symfony\Component\HttpFoundation\Request $request) : \Symfony\Component\Security\Http\Authenticator\Passport\Passport { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'authenticate', array('request' => $request), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return $this->valueHolder4046c->authenticate($request); } public function onAuthenticationSuccess(\Symfony\Component\HttpFoundation\Request $request, \Symfony\Component\Security\Core\Authentication\Token\TokenInterface $token, string $firewallName) : ?\Symfony\Component\HttpFoundation\Response { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'onAuthenticationSuccess', array('request' => $request, 'token' => $token, 'firewallName' => $firewallName), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return $this->valueHolder4046c->onAuthenticationSuccess($request, $token, $firewallName); } public function onAuthenticationFailure(\Symfony\Component\HttpFoundation\Request $request, \Symfony\Component\Security\Core\Exception\AuthenticationException $exception) : ?\Symfony\Component\HttpFoundation\Response { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'onAuthenticationFailure', array('request' => $request, 'exception' => $exception), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return $this->valueHolder4046c->onAuthenticationFailure($request, $exception); } public function createToken(\Symfony\Component\Security\Http\Authenticator\Passport\Passport $passport, string $firewallName) : \Symfony\Component\Security\Core\Authentication\Token\TokenInterface { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'createToken', array('passport' => $passport, 'firewallName' => $firewallName), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return $this->valueHolder4046c->createToken($passport, $firewallName); } public function createAuthenticatedToken(\Symfony\Component\Security\Http\Authenticator\Passport\PassportInterface $passport, string $firewallName) : \Symfony\Component\Security\Core\Authentication\Token\TokenInterface { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'createAuthenticatedToken', array('passport' => $passport, 'firewallName' => $firewallName), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return $this->valueHolder4046c->createAuthenticatedToken($passport, $firewallName); } /** * Constructor for lazy initialization * * @param \Closure|null $initializer */ public static function staticProxyConstructor($initializer) { static $reflection; $reflection = $reflection ?? new \ReflectionClass(__CLASS__); $instance = $reflection->newInstanceWithoutConstructor(); \Closure::bind(function (\App\Security\JWTTokenAuthenticator $instance) { unset($instance->jwtManager, $instance->userProvider); }, $instance, 'App\\Security\\JWTTokenAuthenticator')->__invoke($instance); $instance->initializer9f5cb = $initializer; return $instance; } public function __construct(\Lexik\Bundle\JWTAuthenticationBundle\Services\JWTTokenManagerInterface $jwtManager, \Symfony\Component\Security\Core\User\UserProviderInterface $userProvider) { static $reflection; if (! $this->valueHolder4046c) { $reflection = $reflection ?? new \ReflectionClass('App\\Security\\JWTTokenAuthenticator'); $this->valueHolder4046c = $reflection->newInstanceWithoutConstructor(); \Closure::bind(function (\App\Security\JWTTokenAuthenticator $instance) { unset($instance->jwtManager, $instance->userProvider); }, $this, 'App\\Security\\JWTTokenAuthenticator')->__invoke($this); } $this->valueHolder4046c->__construct($jwtManager, $userProvider); } public function & __get($name) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__get', ['name' => $name], $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; if (isset(self::$publicProperties2dd98[$name])) { return $this->valueHolder4046c->$name; } $realInstanceReflection = new \ReflectionClass('App\\Security\\JWTTokenAuthenticator'); if (! $realInstanceReflection->hasProperty($name)) { $targetObject = $this->valueHolder4046c; $backtrace = debug_backtrace(false, 1); trigger_error( sprintf( 'Undefined property: %s::$%s in %s on line %s', $realInstanceReflection->getName(), $name, $backtrace[0]['file'], $backtrace[0]['line'] ), \E_USER_NOTICE ); return $targetObject->$name; } $targetObject = $this->valueHolder4046c; $accessor = function & () use ($targetObject, $name) { return $targetObject->$name; }; $backtrace = debug_backtrace(true, 2); $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub(); $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject)); $returnValue = & $accessor(); return $returnValue; } public function __set($name, $value) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__set', array('name' => $name, 'value' => $value), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; $realInstanceReflection = new \ReflectionClass('App\\Security\\JWTTokenAuthenticator'); if (! $realInstanceReflection->hasProperty($name)) { $targetObject = $this->valueHolder4046c; $targetObject->$name = $value; return $targetObject->$name; } $targetObject = $this->valueHolder4046c; $accessor = function & () use ($targetObject, $name, $value) { $targetObject->$name = $value; return $targetObject->$name; }; $backtrace = debug_backtrace(true, 2); $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub(); $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject)); $returnValue = & $accessor(); return $returnValue; } public function __isset($name) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__isset', array('name' => $name), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; $realInstanceReflection = new \ReflectionClass('App\\Security\\JWTTokenAuthenticator'); if (! $realInstanceReflection->hasProperty($name)) { $targetObject = $this->valueHolder4046c; return isset($targetObject->$name); } $targetObject = $this->valueHolder4046c; $accessor = function () use ($targetObject, $name) { return isset($targetObject->$name); }; $backtrace = debug_backtrace(true, 2); $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub(); $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject)); $returnValue = $accessor(); return $returnValue; } public function __unset($name) { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__unset', array('name' => $name), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; $realInstanceReflection = new \ReflectionClass('App\\Security\\JWTTokenAuthenticator'); if (! $realInstanceReflection->hasProperty($name)) { $targetObject = $this->valueHolder4046c; unset($targetObject->$name); return; } $targetObject = $this->valueHolder4046c; $accessor = function () use ($targetObject, $name) { unset($targetObject->$name); return; }; $backtrace = debug_backtrace(true, 2); $scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub(); $accessor = $accessor->bindTo($scopeObject, get_class($scopeObject)); $accessor(); } public function __clone() { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__clone', array(), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; $this->valueHolder4046c = clone $this->valueHolder4046c; } public function __sleep() { $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, '__sleep', array(), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; return array('valueHolder4046c'); } public function __wakeup() { \Closure::bind(function (\App\Security\JWTTokenAuthenticator $instance) { unset($instance->jwtManager, $instance->userProvider); }, $this, 'App\\Security\\JWTTokenAuthenticator')->__invoke($this); } public function setProxyInitializer(?\Closure $initializer = null) : void { $this->initializer9f5cb = $initializer; } public function getProxyInitializer() : ?\Closure { return $this->initializer9f5cb; } public function initializeProxy() : bool { return $this->initializer9f5cb && ($this->initializer9f5cb->__invoke($valueHolder4046c, $this, 'initializeProxy', array(), $this->initializer9f5cb) || 1) && $this->valueHolder4046c = $valueHolder4046c; } public function isProxyInitialized() : bool { return null !== $this->valueHolder4046c; } public function getWrappedValueHolderValue() { return $this->valueHolder4046c; }}if (!\class_exists('JWTTokenAuthenticator_3af84d5', false)) { \class_alias(__NAMESPACE__.'\\JWTTokenAuthenticator_3af84d5', 'JWTTokenAuthenticator_3af84d5', false);}