コード例 #1
0
ファイル: User.php プロジェクト: junjinZ/wealthbot
 public function removeBill(Bill $bill)
 {
     $this->bills->removeElement($bill);
     return $this;
 }
コード例 #2
0
ファイル: Employee.php プロジェクト: wwsh/gastro-api
 /**
  * Remove bill
  *
  * @param \WW\Gastro\ApiBundle\Entity\Bill $bill
  */
 public function removeBill(\WW\Gastro\ApiBundle\Entity\Bill $bill)
 {
     $this->bills->removeElement($bill);
 }