Conditions | 3 |
Paths | 4 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
24 | 2 | protected function processMessage($key, $value, $indent) |
|
25 | { |
||
26 | 2 | $row = ' | '; |
|
27 | |||
28 | 2 | if (!is_int($key)) { |
|
29 | 2 | $row .= $key . ':'; |
|
30 | 2 | } |
|
31 | |||
32 | 2 | if (is_array($value)) { |
|
33 | 1 | $this->message .= $row; |
|
34 | 1 | $this->buildMessage($value, $indent); |
|
35 | 1 | } else { |
|
36 | 2 | $this->message .= $row . $value; |
|
37 | } |
||
38 | |||
39 | 2 | return $this; |
|
40 | } |
||
42 |