Commit ed7c1c0b authored by Marco Pivetta's avatar Marco Pivetta

Merge pull request #370 from carlosbuenosvinos/patch-1

Checkstyle (Fix additional space in "if" statement)
parents 4f6f844d 0ccf5b1d
......@@ -186,7 +186,7 @@ final class DriverManager
// check validity of parameters
// 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));
}
......
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