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