| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | 2 | protected function configure($config = null) { |
|
| 42 | 2 | if (is_array($config)) { |
|
| 43 | 1 | $this->config = new CodeGeneratorConfig($config); |
|
| 44 | 1 | } else if ($config instanceof CodeGeneratorConfig) { |
|
| 45 | 1 | $this->config = $config; |
|
| 46 | } else { |
||
| 47 | 1 | $this->config = new CodeGeneratorConfig(); |
|
| 48 | } |
||
| 49 | 2 | } |
|
| 50 | |||
| 71 |