Esempio n. 1
0
 /**
  * @param array $rates
  * @return array
  */
 protected function getRatesData($rates)
 {
     $taxRates = [];
     foreach ($rates as $rate) {
         $taxRate = $this->ratesFactory->create([]);
         $taxRate->setPercent($rate['percent']);
         $taxRate->setTitle($rate['title']);
         $taxRates[] = $taxRate;
     }
     return $taxRates;
 }