Skip to content

Commit

Permalink
[ci] explicit nullable type in fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
jrushlow committed Sep 30, 2024
1 parent c3de1d7 commit 1b29a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Security/Authenticator/SocialAuthenticatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function doFetchAccessToken(OAuth2Client $client)
return $this->fetchAccessToken($client);
}

public function start(Request $request, AuthenticationException $authException = null): Response
public function start(Request $request, ?AuthenticationException $authException = null): Response
{
}
public function supports(Request $request): bool
Expand Down

0 comments on commit 1b29a89

Please sign in to comment.