summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2013-08-21 22:48:51 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2013-08-21 22:48:51 +0200
commit3fb54e7c4c453f87182858dfd603947802269c98 (patch)
tree6e1f1f5296b8b83506b222b2271dfa7e294db58f /Http
parentbcf632a5efec0f40041b6836bf6b4ca1f4418a5e (diff)
downloadsymfony-security-3fb54e7c4c453f87182858dfd603947802269c98.zip
symfony-security-3fb54e7c4c453f87182858dfd603947802269c98.tar.gz
symfony-security-3fb54e7c4c453f87182858dfd603947802269c98.tar.bz2
added a missing use statement (closes #8808)
Diffstat (limited to 'Http')
-rw-r--r--Http/Firewall/AbstractAuthenticationListener.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php
index 384f7ce..b16e70c 100644
--- a/Http/Firewall/AbstractAuthenticationListener.php
+++ b/Http/Firewall/AbstractAuthenticationListener.php
@@ -17,6 +17,7 @@ use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerI
use Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface;
use Symfony\Component\Security\Core\SecurityContextInterface;
use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface;
+use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\Security\Core\Exception\SessionUnavailableException;
use Psr\Log\LoggerInterface;