예제 #1
0
파일: Hotel.php 프로젝트: blab2015/seh
 /**
  * @param Brand $brand
  * @return $this
  */
 public function setBrand(\Seh\Bundle\SehBundle\Entity\Brand $brand = null)
 {
     $this->brand = $brand;
     $brand->addHotel($this);
     return $this;
 }