Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | 1 | protected function create($name, $config = []) |
|
48 | { |
||
49 | 1 | $driverMethod = 'create' . ucfirst($name) . 'Formatter'; |
|
50 | 1 | if (method_exists($this, $driverMethod)) { |
|
51 | 1 | return $this->{$driverMethod}($config); |
|
52 | } else { |
||
53 | throw new InvalidArgumentException("Driver [{$name}] is not supported."); |
||
54 | } |
||
67 |