From 7e35ba0e5d3dcdd8efc366022ab2ac3b550f8698 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 21 Apr 2023 13:34:27 +0200 Subject: [PATCH] [Security] Fix return type of AuthenticationSuccessHandlerInterface::onAuthenticationSuccess() --- .../Authentication/AuthenticationSuccessHandlerInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Http/Authentication/AuthenticationSuccessHandlerInterface.php b/src/Symfony/Component/Security/Http/Authentication/AuthenticationSuccessHandlerInterface.php index b1e6e27186951..25b651827b4fe 100644 --- a/src/Symfony/Component/Security/Http/Authentication/AuthenticationSuccessHandlerInterface.php +++ b/src/Symfony/Component/Security/Http/Authentication/AuthenticationSuccessHandlerInterface.php @@ -31,7 +31,7 @@ interface AuthenticationSuccessHandlerInterface * is called by authentication listeners inheriting from * AbstractAuthenticationListener. * - * @return Response + * @return Response|null */ public function onAuthenticationSuccess(Request $request, TokenInterface $token); }