/**
  * @param $textToFind
  * @return AccommodationDto[]
  */
 private function searchTextInHotels($textToFind)
 {
     $accommodationDtos = array();
     $specification = new HotelFullTextSearchSpecification($textToFind);
     $hotels = $this->hotelRepository->query($specification);
     foreach ($hotels as $hotel) {
         // TODO: enum form accommodation types
         $accommodationDto = new AccommodationDto('hotel', $hotel->getName(), $hotel->getStarts(), $hotel->getStandardRoomType(), null, null);
         $accommodationDtos[$hotel->getName()] = $accommodationDto;
     }
     return $accommodationDtos;
 }