Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.686 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
24 | 1 | public function __construct(array $patchers = null) |
|
25 | { |
||
26 | 1 | $xmlAccessor = new XmlAccessor(); |
|
27 | |||
28 | 1 | $this->patchers = $patchers !== null |
|
29 | 1 | ? $patchers |
|
30 | : [ |
||
31 | new CodeStylePatcher(), |
||
32 | new FileTemplatesPatcher($xmlAccessor), |
||
33 | new InspectionsPatcher($xmlAccessor), |
||
34 | new TemplateSettingsPatcher($xmlAccessor), |
||
35 | new LiveTemplatesPatcher() |
||
36 | ]; |
||
54 |