Skip to content

Commit e10257d

Browse files
Merge branch '6.3' into 6.4
* 6.3: minor #53524 [Messenger] [AmazonSqs] Allow `async-aws/sqs` version 2 (smoench) Fix bad merge List CS fix in .git-blame-ignore-revs Fix implicitly-required parameters List CS fix in .git-blame-ignore-revs Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value
2 parents b284134 + 7d6ba79 commit e10257d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CsrfTokenManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class CsrfTokenManager implements CsrfTokenManagerInterface
3737
* * RequestStack: generates a namespace using the current main request
3838
* * callable: uses the result of this callable (must return a string)
3939
*/
40-
public function __construct(TokenGeneratorInterface $generator = null, TokenStorageInterface $storage = null, string|RequestStack|callable $namespace = null)
40+
public function __construct(?TokenGeneratorInterface $generator = null, ?TokenStorageInterface $storage = null, string|RequestStack|callable|null $namespace = null)
4141
{
4242
$this->generator = $generator ?? new UriSafeTokenGenerator();
4343
$this->storage = $storage ?? new NativeSessionTokenStorage();

0 commit comments

Comments
 (0)