Skip to content

Commit

Permalink
Add missing return type for Symfony 7
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Feb 5, 2024
1 parent f3224bc commit 6de3d21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
class AuthenticationEntryPoint implements AuthenticationEntryPointInterface
{
public function start(Request $request, ?AuthenticationException $authException = null)
public function start(Request $request, ?AuthenticationException $authException = null): Response
{
return new Response('', 401);
}
Expand Down

0 comments on commit 6de3d21

Please sign in to comment.