getActivityZones() public method

public getActivityZones ( integer $id )
$id integer
Ejemplo n.º 1
0
 /**
  * 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());
     }
 }