Skip to content

Commit 9fa34b6

Browse files
committed
Merge branch '3.4' into 4.3
* 3.4: Fix CS
2 parents 19e46af + 0cb223d commit 9fa34b6

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

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

0 commit comments

Comments
 (0)