Commit 0ccf5b1d authored by Carlos Buenosvinos's avatar Carlos Buenosvinos

Checkstyle (Fix additional space in "if" statement)

parent 4f6f844d
...@@ -186,7 +186,7 @@ final class DriverManager ...@@ -186,7 +186,7 @@ final class DriverManager
// check validity of parameters // check validity of parameters
// driver // driver
if ( isset($params['driver']) && ! isset(self::$_driverMap[$params['driver']])) { if (isset($params['driver']) && ! isset(self::$_driverMap[$params['driver']])) {
throw DBALException::unknownDriver($params['driver'], array_keys(self::$_driverMap)); throw DBALException::unknownDriver($params['driver'], array_keys(self::$_driverMap));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment