diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2013-09-18 16:35:01 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-09-18 16:35:01 +0200 |
commit | f80ff7f53983fcdcc14104abbebedd94adda9b97 (patch) | |
tree | 75e766d1f7eae3aa7e9d7b1bf957d89ec6b8bca0 | |
parent | caababd751affa17ec70475d4cefa5778098de21 (diff) | |
parent | e736eac2af86767eb364907a981d0aea26d454c8 (diff) | |
download | symfony-security-f80ff7f53983fcdcc14104abbebedd94adda9b97.zip symfony-security-f80ff7f53983fcdcc14104abbebedd94adda9b97.tar.gz symfony-security-f80ff7f53983fcdcc14104abbebedd94adda9b97.tar.bz2 |
merged branch alexpods/patch-4 (PR #9066)
This PR was merged into the master branch.
Discussion
----------
[Security] Delete unnecessary "use" statements
Delete unnecessary "use" statements in SimpleAuthenticationProvider
Commits
-------
82de3ba [Security] [SimpleAuthenticationProvider] Delete unnecessary "use" statements
-rw-r--r-- | Core/Authentication/Provider/SimpleAuthenticationProvider.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Core/Authentication/Provider/SimpleAuthenticationProvider.php b/Core/Authentication/Provider/SimpleAuthenticationProvider.php index 8f8cceb..ffbc72c 100644 --- a/Core/Authentication/Provider/SimpleAuthenticationProvider.php +++ b/Core/Authentication/Provider/SimpleAuthenticationProvider.php @@ -11,13 +11,7 @@ namespace Symfony\Component\Security\Core\Authentication\Provider; -use Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface; use Symfony\Component\Security\Core\User\UserProviderInterface; -use Symfony\Component\Security\Core\User\UserCheckerInterface; -use Symfony\Component\Security\Core\User\UserInterface; -use Symfony\Component\Security\Core\Exception\UsernameNotFoundException; -use Symfony\Component\Security\Core\Exception\AuthenticationServiceException; -use Symfony\Component\Security\Core\Exception\BadCredentialsException; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface; use Symfony\Component\Security\Core\Exception\AuthenticationException; |