From 9173c085d9761e10d7d342e2cdd0975316fe1e46 Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Wed, 13 Oct 2021 13:42:32 +0200 Subject: [PATCH] [Security] Fix `TraceableAuthenticator` return type --- .../Http/Authenticator/Debug/TraceableAuthenticator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Http/Authenticator/Debug/TraceableAuthenticator.php b/src/Symfony/Component/Security/Http/Authenticator/Debug/TraceableAuthenticator.php index e3792d8d926f4..87f03171d7829 100644 --- a/src/Symfony/Component/Security/Http/Authenticator/Debug/TraceableAuthenticator.php +++ b/src/Symfony/Component/Security/Http/Authenticator/Debug/TraceableAuthenticator.php @@ -58,7 +58,7 @@ public function supports(Request $request): ?bool return $this->authenticator->supports($request); } - public function authenticate(Request $request): Passport + public function authenticate(Request $request): PassportInterface { $startTime = microtime(true); $this->passport = $this->authenticator->authenticate($request);