Skip to content

Commit f6f7f59

Browse files
committed
Add missing dots at the end of exception messages
1 parent 1faaec5 commit f6f7f59

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)