コード例 #1
0
ファイル: Customer.php プロジェクト: ekyna/commerce
 /**
  * @inheritdoc
  */
 public function addChild(CustomerInterface $child)
 {
     if (!$this->hasChild($child)) {
         $this->children->add($child);
     }
     return $this;
 }
コード例 #2
0
ファイル: PriceList.php プロジェクト: ekyna/commerce
 /**
  * @inheritdoc
  */
 public function addCustomer(CustomerInterface $customer)
 {
     if (!$this->hasCustomer($customer)) {
         $this->customers->add($customer);
     }
     return $this;
 }