| Conditions | 4 |
| Paths | 6 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 11 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | 2 | private function renderMessage(array $message) |
|
| 40 | { |
||
| 41 | 2 | if (isset($message[1])) { |
|
| 42 | 1 | unset($message[1]); |
|
| 43 | } |
||
| 44 | 2 | $alert = ''; |
|
| 45 | 2 | $num = count($message); |
|
| 46 | 2 | $x = 1; |
|
| 47 | 2 | foreach($message as $msg) |
|
| 48 | { |
||
| 49 | 2 | $alert .= $msg; |
|
| 50 | 2 | if($x < $num){$alert .= '<br />';} |
|
| 51 | 2 | $x ++; |
|
| 52 | } |
||
| 53 | 2 | return $alert; |
|
| 54 | } |
||
| 55 | } |