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