コード例 #1
0
ファイル: Item.php プロジェクト: gregoriohc/argentum-common
 /**
  * Set the item taxes
  *
  * @param Bag $value
  * @return Item
  */
 public function setTaxes($value)
 {
     if (is_array($value)) {
         $bag = new Bag();
         foreach ($value as $taxParameters) {
             $bag->add(new Tax($taxParameters));
         }
         $value = $bag;
     }
     return $this->setParameter('taxes', $value);
 }