/** * List activity zones * * @link http://strava.github.io/api/v3/activities/#zones * @param int $id * @return array * @throws Exception */ public function getActivityZones($id) { try { return $this->service->getActivityZones($id); } catch (ServiceException $e) { throw new ClientException('[SERVICE] ' . $e->getMessage()); } }