/**
  * Execute the job.
  *
  * @return void
  */
 public function handle(TourRepository $tourRepository)
 {
     $tour = $tourRepository->findTour($this->data['tourId']);
     $tourRepository->syncCountries($tour, $this->data['countryIds']);
     $tourRepository->syncActivities($tour, $this->data['activityIds']);
 }