public function getEventById($eventID)
 {
     $eventUrl = sprintf('https://api.meetup.com/%s/events/%s', $this->meetupEvent->getGroupUrlName(), $eventID);
     try {
         $response = $this->httpClient->get($eventUrl, ['headers' => ['Accept' => 'application/json']]);
     } catch (\Exception $e) {
         return [];
     }
     $result = json_decode($response->getBody()->getContents(), true);
     return $this->meetupEvent->formatResponse($result ?? []);
 }