Skip to content

Commit 30bf19d

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Fix quotes in exception messages
2 parents 77e7095 + 1c444da commit 30bf19d

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($subject, $ignore = '', $flags = 0): string
7575
public static function create($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)