| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | function _n($expression_singular, $expression_plural, $number, $domain = NULL) |
||
| 49 | { |
||
| 50 | 3 | $number = (int) $number; |
|
| 51 | |||
| 52 | 3 | if (!empty($domain)) { |
|
| 53 | 1 | (new \Gettext())->changeDomain($domain); |
|
| 54 | 1 | return (dngettext($domain, $expression_singular, $expression_plural, $number)); |
|
| 55 | } |
||
| 56 | |||
| 57 | 2 | return (ngettext($expression_singular, $expression_plural, $number)); |
|
| 58 | } |
||
| 59 | } |