Skip to content

Commit 6de3d21

Browse files
Add missing return type for Symfony 7
1 parent f3224bc commit 6de3d21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sulu/Bundle/SecurityBundle/Security/AuthenticationEntryPoint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323
class AuthenticationEntryPoint implements AuthenticationEntryPointInterface
2424
{
25-
public function start(Request $request, ?AuthenticationException $authException = null)
25+
public function start(Request $request, ?AuthenticationException $authException = null): Response
2626
{
2727
return new Response('', 401);
2828
}

0 commit comments

Comments
 (0)