Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function format(string $message, array $parameters, string $locale): string |
||
29 | { |
||
30 | if ($parameters === []) { |
||
31 | return $message; |
||
32 | } |
||
33 | |||
34 | $formatter = new MessageFormatter($locale, $message); |
||
35 | |||
36 | $result = $formatter->format($parameters); |
||
37 | |||
38 | if ($result === false) { |
||
39 | return $message; |
||
40 | } |
||
41 | |||
42 | return $result; |
||
43 | } |
||
45 |