| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 17 | public static function make(int $indentationCount, int $characterCount): self | ||
| 18 |     { | ||
| 19 | $indentationValues = array_fill(0, $indentationCount, -1); | ||
| 20 | |||
| 21 | $characterValues = array_fill(0, $characterCount, 1); | ||
| 22 | |||
| 23 | $lineValues = array_merge($indentationValues, $characterValues); | ||
| 24 | |||
| 25 | return new self(...$lineValues); | ||
| 26 | } | ||
| 51 |