Esempio n. 1
0
 /**
  * Sets the billingaddress of the customer item.
  *
  * @param \Aimeos\MShop\Common\Item\Address\Iface $address Billingaddress of the customer item
  */
 public function setPaymentAddress(\Aimeos\MShop\Common\Item\Address\Iface $address)
 {
     if ($address === $this->billingaddress && $address->isModified() === false) {
         return;
     }
     $this->billingaddress = $address;
     $this->setModified();
 }