Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | 7 | public static function missingOption(iterable $dimensions, $option) : self |
|
22 | { |
||
23 | 7 | $depth = ''; |
|
24 | |||
25 | 7 | foreach ($dimensions as $dimension) { |
|
26 | 7 | $depth .= '.' . $dimension; |
|
27 | } |
||
28 | 7 | return new static( |
|
29 | 7 | sprintf('Mandatory option "%s" was not set for configuration "%s"', $option, $depth) |
|
30 | ); |
||
33 |