1 | <?php |
||
7 | class CurrencyInfoKeys |
||
8 | { |
||
9 | private static $keys = [ |
||
10 | CurrencyInfo::SYMBOL, |
||
11 | CurrencyInfo::SYMBOL_NATIVE, |
||
12 | CurrencyInfo::FRACTION_DIGITS, |
||
13 | CurrencyInfo::ROUNDING, |
||
14 | CurrencyInfo::CODE, |
||
15 | ]; |
||
16 | |||
17 | /** |
||
18 | * @return string[] |
||
19 | */ |
||
20 | 5 | public static function getStatic() |
|
24 | |||
25 | /** |
||
26 | * @return string[] |
||
27 | */ |
||
28 | 5 | public function get() |
|
32 | } |
||
33 |