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 Apr 8, 2024
1 parent a5b5586 commit c9fae2a
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 c9fae2a

Please sign in to comment.