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