Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public static function handler(int $cents, string $code, string $locale): string |
||
25 | { |
||
26 | $formatter = new BaseFormatter( |
||
27 | new NumberFormatter($locale, NumberFormatter::CURRENCY), |
||
28 | new ISOCurrencies |
||
29 | ); |
||
30 | |||
31 | $money = Money::$code($cents); |
||
32 | |||
33 | return $formatter->format($money); |
||
34 | } |
||
56 |