diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2013-05-05 18:52:41 +0200 |
---|---|---|
committer | Jordi Boggiano <j.boggiano@seld.be> | 2013-05-08 15:02:45 +0200 |
commit | 5bc6c9f81d2650c6d5ed123ddb8afde33f57bdcf (patch) | |
tree | c52963230e066da6421d3090e8635d1215e345c0 | |
parent | 12d83b3c17382667fac1d6891d6d627435e2396a (diff) | |
download | symfony-security-5bc6c9f81d2650c6d5ed123ddb8afde33f57bdcf.zip symfony-security-5bc6c9f81d2650c6d5ed123ddb8afde33f57bdcf.tar.gz symfony-security-5bc6c9f81d2650c6d5ed123ddb8afde33f57bdcf.tar.bz2 |
fixed wrong Logger interface
-rw-r--r-- | Http/Firewall/SimpleFormAuthenticationListener.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/SimpleFormAuthenticationListener.php b/Http/Firewall/SimpleFormAuthenticationListener.php index f096c2f..7c4b971 100644 --- a/Http/Firewall/SimpleFormAuthenticationListener.php +++ b/Http/Firewall/SimpleFormAuthenticationListener.php @@ -13,7 +13,6 @@ namespace Symfony\Component\Security\Http\Firewall; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\HttpKernel\Event\GetResponseEvent; -use Symfony\Component\HttpKernel\Log\LoggerInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface; use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface; @@ -29,6 +28,7 @@ use Symfony\Component\Security\Http\HttpUtils; use Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface; use Symfony\Component\Security\Http\SecurityEvents; use Symfony\Component\Security\Http\Session\SessionAuthenticationStrategyInterface; +use Psr\Log\LoggerInterface; /** * @author Jordi Boggiano <j.boggiano@seld.be> |