Exemplo n.º 1
0
 /**
  * @param Hotel $hotel
  */
 public function addHotel($hotel)
 {
     $hotel->addRate($this);
     if (!$this->hotels->contains($hotel)) {
         $this->hotels->add($hotel);
     }
     return $this;
 }