| 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 |
||
| 26 | public function format(string $message, array $parameters, string $locale): string |
||
| 27 | { |
||
| 28 | if ($parameters === []) { |
||
| 29 | return $message; |
||
| 30 | } |
||
| 31 | |||
| 32 | $formatter = new MessageFormatter($locale, $message); |
||
| 33 | |||
| 34 | $result = $formatter->format($parameters); |
||
| 35 | |||
| 36 | if ($result === false) { |
||
| 37 | return $message; |
||
| 38 | } |
||
| 39 | |||
| 40 | return $result; |
||
| 41 | } |
||
| 43 |