1 | <?php |
||
7 | class CurrencyInfo implements CurrencyInfoInterface |
||
8 | { |
||
9 | public $staticCurrencyInfoClass = StaticCurrencyInfo::class; |
||
10 | |||
11 | /** |
||
12 | * @return array[] |
||
13 | */ |
||
14 | 1 | public function getMap() |
|
18 | |||
19 | /** |
||
20 | * @param string $currencyCode |
||
21 | * @return array |
||
22 | */ |
||
23 | 1 | public function getMapForCurrency($currencyCode) |
|
27 | |||
28 | /** |
||
29 | * @return string[] |
||
30 | */ |
||
31 | 1 | public function getSymbolMap() |
|
35 | |||
36 | /** |
||
37 | * @param string $currencyCode |
||
38 | * @return string |
||
39 | */ |
||
40 | 1 | public function getSymbolForCurrency($currencyCode) |
|
44 | |||
45 | /** |
||
46 | * @return string[] |
||
47 | */ |
||
48 | 1 | public function getNativeSymbolMap() |
|
52 | |||
53 | /** |
||
54 | * @param string $currencyCode |
||
55 | * @return string |
||
56 | */ |
||
57 | 1 | public function getNativeSymbolForCurrency($currencyCode) |
|
61 | |||
62 | /** |
||
63 | * @return int[] |
||
64 | */ |
||
65 | 1 | public function getFractionDigitsMap() |
|
69 | |||
70 | /** |
||
71 | * @param string $currencyCode |
||
72 | * @return int |
||
73 | */ |
||
74 | 1 | public function getFractionDigitsForCurrency($currencyCode) |
|
78 | |||
79 | /** |
||
80 | * @return float[] |
||
81 | */ |
||
82 | 1 | public function getRoundingMap() |
|
86 | |||
87 | /** |
||
88 | * @param string $currencyCode |
||
89 | * @return float |
||
90 | */ |
||
91 | 1 | public function getRoundingForCurrency($currencyCode) |
|
95 | } |
||
96 |