| Conditions | 3 |
| Paths | 3 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function render(int $indentLevel = 0): string |
||
| 40 | { |
||
| 41 | if ($this->isEmpty()) { |
||
| 42 | return ''; |
||
| 43 | } |
||
| 44 | |||
| 45 | $result = $this->addIndent("/**\n", $indentLevel); |
||
| 46 | foreach ($this->getLines() as $line) { |
||
| 47 | $result .= $this->addIndent(" * {$line}\n", $indentLevel); |
||
| 48 | } |
||
| 49 | |||
| 50 | $result .= $this->addIndent(' */', $indentLevel); |
||
| 51 | |||
| 52 | return $result; |
||
| 53 | } |
||
| 68 |