Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
53 | 2 | protected function load(string $name) |
|
54 | { |
||
55 | 2 | $method = 'create' . ucfirst(strtolower($name)) . 'Driver'; |
|
56 | |||
57 | 2 | if (! method_exists($this, $method)) { |
|
58 | 1 | throw new InvalidArgumentException('Driver [' . $name . '] not supported.'); |
|
59 | } |
||
60 | |||
61 | 1 | return $this->$method(); |
|
62 | } |
||
63 | } |
||
64 |