/** * Returns a list of projects for the currently authenticated user. * * @return \SimpleXMLElement */ public function getProjects() { return simplexml_load_string($this->client->get("/projects")); }
/** * Returns a list of projects for the currently authenticated user. * * @return object */ public function getProjects() { return json_decode($this->client->get("/projects")); }
/** * Returns a list of projects for the currently authenticated user. * * @return object */ public function getProjects() { return $this->processResponse($this->client->get("/projects")); }