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 |
||
27 | 1 | public function __construct(array $patchers = null) |
|
28 | { |
||
29 | 1 | $xmlAccessor = new XmlAccessor(); |
|
30 | |||
31 | 1 | $this->patchers = $patchers !== null |
|
32 | 1 | ? $patchers |
|
33 | : [ |
||
34 | new CodeStylePatcher(), |
||
35 | new FileTemplatesPatcher($xmlAccessor), |
||
36 | new InspectionsPatcher($xmlAccessor), |
||
37 | new TemplateSettingsPatcher($xmlAccessor), |
||
38 | new LiveTemplatesPatcher() |
||
39 | ]; |
||
57 |