コード例 #1
0
ファイル: TaxType.php プロジェクト: housineali/drpl8_dv
 /**
  * {@inheritdoc}
  */
 public function removeRate(TaxRateInterface $rate) {
   unset($this->rates[array_search($rate->getId(), $this->rates)]);
   return $this;
 }
コード例 #2
0
ファイル: TaxRateAmount.php プロジェクト: housineali/drpl8_dv
 /**
  * {@inheritdoc}
  */
 public function setRate(TaxRateInterface $rate) {
   $this->rate = $rate->getId();
   return $this;
 }