Commit 9710201c authored by Stéphane Klein's avatar Stéphane Klein

Made driver getter return only the driver names

parent 1d3101d6
...@@ -156,13 +156,13 @@ final class DriverManager ...@@ -156,13 +156,13 @@ final class DriverManager
} }
/** /**
* Returns the list of supported drivers and their mappings to the driver classes. * Returns the list of supported drivers.
* *
* @return array * @return array
*/ */
public static function getDriverMap() public static function getAvailableDrivers()
{ {
return self::$_driverMap; return 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