Skip to content

Commit 1c444da

Browse files
committed
Fix quotes in exception messages
1 parent f6f7f59 commit 1c444da

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
@@ -73,7 +73,7 @@ public function escape($subject, $ignore = '', $flags = 0)
7373
public static function create($adapter, array $config = [])
7474
{
7575
if (!isset(self::$adapterMap[$adapter])) {
76-
throw new DriverNotFoundException(sprintf('Adapter "%s" not found. You should use one of: %s.', $adapter, implode(', ', self::$adapterMap)));
76+
throw new DriverNotFoundException(sprintf('Adapter "%s" not found. You should use one of: "%s".', $adapter, implode('", "', self::$adapterMap)));
7777
}
7878

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

0 commit comments

Comments
 (0)