コード例 #1
0
ファイル: Customer.php プロジェクト: unrlab/domain-bundle
 /**
  * Add bills
  *
  * @param BaseBill $bills
  * @return Customer
  */
 public function addBill(BaseBill $bill)
 {
     $bill->setCustomer($this);
     $this->bills->add($bill);
     return $this;
 }