Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit 5cabfec

Browse files
committed
Fix quoting style consistency.
1 parent 36cde60 commit 5cabfec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Http/Firewall/DigestAuthenticationListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function handle(GetResponseEvent $event)
101101

102102
if ($serverDigestMd5 !== $digestAuth->getResponse()) {
103103
if (null !== $this->logger) {
104-
$this->logger->debug(sprintf("Expected response: '%s' but received: '%s'; is AuthenticationDao returning clear text passwords?", $serverDigestMd5, $digestAuth->getResponse()));
104+
$this->logger->debug(sprintf('Expected response: "%s" but received: "%s"; is AuthenticationDao returning clear text passwords?', $serverDigestMd5, $digestAuth->getResponse()));
105105
}
106106

107107
$this->fail($event, $request, new BadCredentialsException('Incorrect response'));

0 commit comments

Comments
 (0)