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