Skip to content

Commit b76270d

Browse files
committed
Remove FQCN type hints on properties
1 parent 3c88825 commit b76270d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CsrfTokenManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
*/
2727
class CsrfTokenManager implements CsrfTokenManagerInterface
2828
{
29-
private TokenGeneratorInterface $generator;
30-
private TokenStorageInterface $storage;
29+
private $generator;
30+
private $storage;
3131
private \Closure|string $namespace;
3232

3333
/**

TokenStorage/SessionTokenStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class SessionTokenStorage implements ClearableTokenStorageInterface
2828
*/
2929
public const SESSION_NAMESPACE = '_csrf';
3030

31-
private RequestStack $requestStack;
31+
private $requestStack;
3232
private string $namespace;
3333

3434
/**

0 commit comments

Comments
 (0)