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

Commit 243e617

Browse files
committed
Merge branch '2.3' into 2.6
* 2.3: Fix quoting style consistency. [DependencyInjection] Fail when dumping a Definition with no class nor factory Normalizing recursively - see #9096 No change - the normalizeParams is a copy-and-paste of the earlier logic fixes issue with logging array of non-utf8 data fix validation for Maestro UK card numbers
2 parents d0547f1 + 5cabfec commit 243e617

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)