Conditions | 2 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | 1 | public static function fromArray(array $data) |
|
18 | { |
||
19 | 1 | return new PhpCsFixer( |
|
20 | 1 | new Undefined(false), |
|
21 | 1 | new Enabled($data['enabled']), |
|
22 | 1 | PhpCsFixerLevelsFactory::fromArray($data['levels']), |
|
23 | 1 | new PhpCsFixerOptions(isset($data['options']) ? $data['options'] : null) |
|
24 | ); |
||
25 | } |
||
26 | |||
40 |