Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3.0175 |
Changes | 0 |
1 | <?php |
||
17 | 34 | public function format(string $message, array $parameters, string $locale): string |
|
18 | { |
||
19 | 34 | if ($parameters === []) { |
|
20 | 3 | return $message; |
|
21 | } |
||
22 | |||
23 | 31 | $formatter = new MessageFormatter($locale, $message); |
|
24 | |||
25 | 31 | $result = $formatter->format($parameters); |
|
26 | |||
27 | 31 | if ($result === false) { |
|
28 | return $message; |
||
29 | } |
||
30 | |||
31 | 31 | return $result; |
|
32 | } |
||
34 |