From 60022210bb48bb41a7bf1e09c0c21ed7c82412de Mon Sep 17 00:00:00 2001 From: Vincent Date: Mon, 19 Aug 2024 21:21:48 +0200 Subject: [PATCH] Update src/Security/JWTAuthenticator.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Maƫl Gangloff Signed-off-by: Vincent --- src/Security/JWTAuthenticator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/JWTAuthenticator.php b/src/Security/JWTAuthenticator.php index feda611..b054f13 100644 --- a/src/Security/JWTAuthenticator.php +++ b/src/Security/JWTAuthenticator.php @@ -21,7 +21,7 @@ class JWTAuthenticator implements AuthenticationSuccessHandlerInterface public function __construct( protected JWTTokenManagerInterface $jwtManager, protected EventDispatcherInterface $dispatcher, - private string $appEnv, + protected KernelInterface $kernel ) { }