Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | public function create(array $config) |
||
18 | { |
||
19 | if (!isset($config["driver"])) { |
||
20 | throw new InvalidArgumentException("Undefined driver"); |
||
21 | } |
||
22 | |||
23 | if ($config["driver"] === "mysql") { |
||
24 | $connector = new MySQLConnector(); |
||
25 | $connector->connect($config); |
||
26 | |||
27 | return $connector; |
||
28 | } |
||
29 | |||
30 | throw new InvalidArgumentException("Unrecognised driver"); |
||
31 | } |
||
32 | } |
||
33 |