| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 11 |
| Ratio | 100 % |
| Tests | 7 |
| CRAP Score | 3.0987 |
| Changes | 3 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 13 | 4 | View Code Duplication | public function __construct($config = null) { |
| 14 | 4 | if (is_array($config)) { |
|
| 15 | 3 | $this->config = new CodeFileGeneratorConfig($config); |
|
| 16 | 4 | } else if ($config instanceof CodeFileGeneratorConfig) { |
|
| 17 | $this->config = $config; |
||
| 18 | } else { |
||
| 19 | 1 | $this->config = new CodeFileGeneratorConfig(); |
|
| 20 | } |
||
| 21 | |||
| 22 | 4 | $this->init(); |
|
| 23 | 4 | } |
|
| 24 | |||
| 59 |