Skip to content

Commit 5eac772

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix CS Fix CS Fix CS [DependencyInjection][Xml] Fix the attribute 'tag' is not allowed in 'bind' tag
2 parents a6f06d3 + f2235b3 commit 5eac772

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