Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
46 | 17 | protected function generateLine(string $text, int $numberOfIndentationBefore = null, int $numberOfEmptyLinesAfter = 0): string |
|
47 | { |
||
48 | 17 | return str_repeat(static::INDENTATION, $numberOfIndentationBefore ?? $this->depth) |
|
49 | 17 | . $text |
|
50 | 17 | . str_repeat(static::END_OF_LINE, ++$numberOfEmptyLinesAfter); |
|
51 | } |
||
52 | } |
||
53 |