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