| Conditions | 5 |
| Paths | 5 |
| Total Lines | 19 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 30 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function getHtml() |
||
| 22 | { |
||
| 23 | $html = ''; |
||
| 24 | foreach ($this->entries as $entry) { |
||
| 25 | if ($entry == '') { |
||
| 26 | $html .= '<br>'; |
||
| 27 | } else { |
||
| 28 | list($msg, $style) = $entry; |
||
| 29 | $msg = htmlspecialchars($msg); |
||
| 30 | if ($style == 'bold') { |
||
| 31 | $html .= '<b>' . $msg . '</b>'; |
||
| 32 | } elseif ($style == 'italic') { |
||
| 33 | $html .= '<i>' . $msg . '</i>'; |
||
| 34 | } else { |
||
| 35 | $html .= $msg; |
||
| 36 | } |
||
| 37 | } |
||
| 38 | } |
||
| 39 | return $html; |
||
| 40 | } |
||
| 59 |