Skip to content

Commit f2235b3

Browse files
committed
Merge branch '4.3' into 4.4
* 4.3: Fix CS Fix CS
2 parents ad11d17 + 9fa34b6 commit f2235b3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Ldap.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +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(
79-
'Adapter "%s" not found. You should use one of: %s',
80-
$adapter,
81-
implode(', ', self::$adapterMap)
82-
));
78+
throw new DriverNotFoundException(sprintf('Adapter "%s" not found. You should use one of: %s', $adapter, implode(', ', self::$adapterMap)));
8379
}
8480

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

0 commit comments

Comments
 (0)