Skip to content

Commit 13135d8

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix quotes in exception messages Fix quotes in exception messages Fix quotes in exception messages
2 parents 84aa853 + 30bf19d commit 13135d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ldap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function escape(string $subject, string $ignore = '', int $flags = 0): st
7575
public static function create(string $adapter, array $config = []): self
7676
{
7777
if (!isset(self::$adapterMap[$adapter])) {
78-
throw new DriverNotFoundException(sprintf('Adapter "%s" not found. You should use one of: %s.', $adapter, implode(', ', self::$adapterMap)));
78+
throw new DriverNotFoundException(sprintf('Adapter "%s" not found. You should use one of: "%s".', $adapter, implode('", "', self::$adapterMap)));
7979
}
8080

8181
$class = self::$adapterMap[$adapter];

0 commit comments

Comments
 (0)