Skip to content

Commit 84486e4

Browse files
Fix CS regarding nullable arguments
1 parent f4db646 commit 84486e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Authentication/AuthenticationTrustResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class AuthenticationTrustResolver implements AuthenticationTrustResolverInterfac
2525
private $anonymousClass;
2626
private $rememberMeClass;
2727

28-
public function __construct(?string $anonymousClass = null, ?string $rememberMeClass = null)
28+
public function __construct(string $anonymousClass = null, string $rememberMeClass = null)
2929
{
3030
$this->anonymousClass = $anonymousClass;
3131
$this->rememberMeClass = $rememberMeClass;

0 commit comments

Comments
 (0)