Conditions | 4 |
Paths | 4 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
28 | 2 | public function installFeatures(BuilderInterface $builder, Settings $settings) |
|
29 | { |
||
30 | 2 | if (!$settings->tryGet(KnownSettingsEnum::INSTALLERS_ENABLED)) { |
|
31 | 1 | return; |
|
32 | } |
||
33 | |||
34 | 1 | foreach ($this->features as $feature) { |
|
35 | 1 | if ($feature->isActive()) { |
|
36 | 1 | $feature->install($builder); |
|
37 | } |
||
38 | } |
||
39 | 1 | } |
|
40 | } |
||
41 |