| Conditions | 5 |
| Paths | 2 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 30 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function formatText(): string |
||
| 26 | { |
||
| 27 | $output = ''; |
||
| 28 | if ($this->notEmpty()) { |
||
| 29 | $output .= "The following TODO comments are NOT DONE:\n\n"; |
||
| 30 | foreach ($this as $comment) { |
||
| 31 | /** @var TodoComment $comment */ |
||
| 32 | if (!isset($last) || !$comment->isInSameFile($last)) { |
||
| 33 | $output .= $comment->file() . "\n"; |
||
| 34 | $output .= str_repeat('=', mb_strlen($comment->file())) . "\n\n"; |
||
| 35 | } |
||
| 36 | $output .= $comment->formatText(); |
||
| 37 | $last = $comment; |
||
| 38 | } |
||
| 39 | } |
||
| 40 | return $output; |
||
| 41 | } |
||
| 42 | } |
||
| 43 |