diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-15 12:35:09 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-15 12:35:09 +0200 |
commit | 5245b38c2470a78b3c0b69d641572d81eb48a991 (patch) | |
tree | c387393d547502ba65c87fcb0905076ce5dc7d3e /Http | |
parent | 7acdc3514d940bb616296e7a4551a04f26e072c1 (diff) | |
download | symfony-security-5245b38c2470a78b3c0b69d641572d81eb48a991.zip symfony-security-5245b38c2470a78b3c0b69d641572d81eb48a991.tar.gz symfony-security-5245b38c2470a78b3c0b69d641572d81eb48a991.tar.bz2 |
[Security] reverted some changes from previous merge
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall/AbstractAuthenticationListener.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php index bf61057..fc8203a 100644 --- a/Http/Firewall/AbstractAuthenticationListener.php +++ b/Http/Firewall/AbstractAuthenticationListener.php @@ -221,10 +221,7 @@ abstract class AbstractAuthenticationListener implements ListenerInterface private function onSuccess(GetResponseEvent $event, Request $request, TokenInterface $token) { if (null !== $this->logger) { - $this->logger->info(sprintf( - 'User "%s" has been authenticated successfully', - $token->getUsername() - )); + $this->logger->info(sprintf('User "%s" has been authenticated successfully', $token->getUsername())); } $this->securityContext->setToken($token); |