getAthleteClubs() public method

public getAthleteClubs ( )
Ejemplo n.º 1
0
 /**
  * List athlete clubs
  * 
  * @link    http://strava.github.io/api/v3/clubs/#get-athletes
  * @return  array
  * @throws  Exception
  */
 public function getAthleteClubs()
 {
     try {
         return $this->service->getAthleteClubs();
     } catch (ServiceException $e) {
         throw new ClientException('[SERVICE] ' . $e->getMessage());
     }
 }