__request(__FUNCTION__, compact('keyword','page','pageSize')); } /** * @param array $data * @return mixed */ public function createWebsite(array $data) { // TODO: Implement createWebsite() method. return $this->__request(__FUNCTION__, $data); } /** * @param int $id * @param array $data * @return mixed */ public function updateWebsite(int $id, array $data) { // TODO: Implement updateWebsite() method. return $this->__request(__FUNCTION__,$id, $data); } /** * @param int $id * @return mixed */ public function delWebsite(int $id) { // TODO: Implement delWebsite() method. return $this->__request(__FUNCTION__,$id); } /** * @param int $id * @return mixed */ public function getWebsiteInfo(int $id) { // TODO: Implement getWebsiteInfo() method. return $this->__request(__FUNCTION__,$id); } }