8000 Add missing use of Role · symfony/symfony@3cfe7d0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3cfe7d0

Browse files
author
Tony Tran
committed
Add missing use of Role
1 parent c3afab9 commit 3cfe7d0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Symfony/Component/Security/Core/Authentication/Token/PreAuthenticatedToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\Component\Security\Core\Authentication\Token;
1313

14-
use Symfony\Component\Security\Core\Role\RoleInterface;
14+
use Symfony\Component\Security\Core\Role\Role;
1515

1616
/**
1717
* PreAuthenticatedToken implements a pre-authenticated token.

src/Symfony/Component/Security/Core/Authentication/Token/UsernamePasswordToken.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
namespace Symfony\Component\Security\Core\Authentication\Token;
1313

14+
use Symfony\Component\Security\Core\Role\Role;
15+
1416
/**
1517
* UsernamePasswordToken implements a username and password token.
1618
*

0 commit comments

Comments
 (0)
0