request("GET", self::URL_EVENTS, $api_key = $this->culqi->api_key, $options); } /** * @param string|null $id * * @return get a Event. */ public function get($id = NULL) { return $this->request("GET", self::URL_EVENTS . $id . "/", $api_key = $this->culqi->api_key); } }