Conditions | 2 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
51 | 4 | private static function formMessagesToString(array $messages = []): string |
|
52 | { |
||
53 | return reduce_left($messages, function ($messageSet, $name, $_, string $acc) { |
||
54 | 4 | return $acc . sprintf( |
|
55 | 4 | "\n '%s' => %s", |
|
56 | 4 | $name, |
|
57 | 4 | is_array($messageSet) ? print_r($messageSet, true) : $messageSet |
|
58 | ); |
||
59 | 4 | }, ''); |
|
60 | } |
||
67 |