diff options
author | Jakub Zalas <jakub@zalas.pl> | 2013-05-26 19:00:29 +0100 |
---|---|---|
committer | Jakub Zalas <jakub@zalas.pl> | 2013-06-02 18:27:21 +0100 |
commit | 4b591729a0599a283494e54be234c918ec6a2b9d (patch) | |
tree | 02e50143b2faa3599380766a058e581f0f324582 /Http | |
parent | f54858561272d81ffb9e431c0032c04ec4365bc6 (diff) | |
download | symfony-security-4b591729a0599a283494e54be234c918ec6a2b9d.zip symfony-security-4b591729a0599a283494e54be234c918ec6a2b9d.tar.gz symfony-security-4b591729a0599a283494e54be234c918ec6a2b9d.tar.bz2 |
[Security] Removed an unnecessary call to sprintf() and added a test case.
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall/AnonymousAuthenticationListener.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/AnonymousAuthenticationListener.php b/Http/Firewall/AnonymousAuthenticationListener.php index af2213b..59f05ff 100644 --- a/Http/Firewall/AnonymousAuthenticationListener.php +++ b/Http/Firewall/AnonymousAuthenticationListener.php @@ -49,7 +49,7 @@ class AnonymousAuthenticationListener implements ListenerInterface $this->context->setToken(new AnonymousToken($this->key, 'anon.', array())); if (null !== $this->logger) { - $this->logger->info(sprintf('Populated SecurityContext with an anonymous Token')); + $this->logger->info('Populated SecurityContext with an anonymous Token'); } } } |