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