Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
21 | 10 | private function __construct(string $service, array $options, array $children, bool $enabled = true) |
|
22 | { |
||
23 | 10 | $this->service = $service; |
|
24 | 10 | $this->options = $options; |
|
25 | 10 | $this->children = array_map([ConfigurationStep::class, 'create'], $children); |
|
26 | 10 | $this->enabled = $enabled; |
|
27 | 10 | } |
|
54 |