Skip to content

Commit f0f724e

Browse files
Merge branch '6.4' into 7.0
* 6.4: Fix implicitly-required parameters 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 [Messenger][AmazonSqs] Allow async-aws/sqs version 2
2 parents e261f2c + e10257d commit f0f724e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CsrfTokenManager.php

+1-1
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)