Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | 29 | public function getMessage(string $id, string $category, string $locale, array $parameters = []): ?string |
|
28 | { |
||
29 | 29 | $this->bindDomain($category); |
|
30 | 29 | $this->setLocale($locale); |
|
31 | 28 | $n = current($parameters); |
|
32 | 28 | if (is_int($n) === false) { |
|
33 | 8 | return dgettext($category, $id); |
|
34 | } |
||
35 | 20 | return dngettext($category, $id, $id, $n); |
|
36 | } |
||
52 |