Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 0 |
1 | <?php |
||
30 | 3 | public function createDriver($name, $config = []) |
|
31 | { |
||
32 | 3 | $driverMethod = 'create' . ucfirst($name) . 'Driver'; |
|
33 | 3 | if (method_exists($this, $driverMethod)) { |
|
34 | 3 | return $this->{$driverMethod}($config); |
|
35 | } else { |
||
36 | throw new InvalidArgumentException("Driver [{$name}] is not supported."); |
||
37 | } |
||
38 | } |
||
39 | |||
55 |