| 1 | <?php |
||
| 7 | class CurrencyLoader |
||
| 8 | { |
||
| 9 | protected static $currencies = []; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Retrive all the currencies of all countries. |
||
| 13 | * |
||
| 14 | * @param bool $longlist states if need all the details of the currencies or only the keys |
||
| 15 | * |
||
| 16 | * @throws \Rinvex\Country\CountryLoaderException |
||
| 17 | * |
||
| 18 | * @return array |
||
| 19 | */ |
||
| 20 | public static function currencies($longlist = false): array |
||
| 40 | } |
||
| 41 |