Пример #1
0
 protected function loadCurrencies()
 {
     $currencies = array_get(get_currencies(), 'iso');
     foreach ($currencies as $iso => $currency) {
         $iso = $this->prepareIso($iso);
         $currency = Currency::loadFromArray($iso, $currency);
         $this->put($iso, $currency);
     }
 }