summaryrefslogtreecommitdiffstats
path: root/Http/Firewall
diff options
context:
space:
mode:
authorogizanagi <maxime.steinhausser@gmail.com>2015-06-28 12:13:08 +0200
committerogizanagi <maxime.steinhausser@gmail.com>2015-06-28 12:13:08 +0200
commit5cabfecc4c4b5416e7c54ffe7a4fcde2d0db4d75 (patch)
tree8494121b4cfd886710c14f2fb3233d34308ccd37 /Http/Firewall
parent36cde602d02d84b7a176912a8e01ed8e3c7ab85c (diff)
downloadsymfony-security-5cabfecc4c4b5416e7c54ffe7a4fcde2d0db4d75.zip
symfony-security-5cabfecc4c4b5416e7c54ffe7a4fcde2d0db4d75.tar.gz
symfony-security-5cabfecc4c4b5416e7c54ffe7a4fcde2d0db4d75.tar.bz2
Fix quoting style consistency.
Diffstat (limited to 'Http/Firewall')
-rw-r--r--Http/Firewall/DigestAuthenticationListener.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/DigestAuthenticationListener.php b/Http/Firewall/DigestAuthenticationListener.php
index 2737069..a88250b 100644
--- a/Http/Firewall/DigestAuthenticationListener.php
+++ b/Http/Firewall/DigestAuthenticationListener.php
@@ -101,7 +101,7 @@ class DigestAuthenticationListener implements ListenerInterface
if ($serverDigestMd5 !== $digestAuth->getResponse()) {
if (null !== $this->logger) {
- $this->logger->debug(sprintf("Expected response: '%s' but received: '%s'; is AuthenticationDao returning clear text passwords?", $serverDigestMd5, $digestAuth->getResponse()));
+ $this->logger->debug(sprintf('Expected response: "%s" but received: "%s"; is AuthenticationDao returning clear text passwords?', $serverDigestMd5, $digestAuth->getResponse()));
}
$this->fail($event, $request, new BadCredentialsException('Incorrect response'));