コード例 #1
0
ファイル: Customer.php プロジェクト: blab2015/seh
 /**
  * Removes a hotel.
  *
  * @param Hotel $hotel
  * @return $this For fluid purposes.
  */
 public function removeHotel(\Seh\Bundle\SehBundle\Entity\Hotel $hotel)
 {
     $this->hotels->removeElement($hotel);
     return $this;
 }