load->helper('hlp_return_object'); } /** * Test HTTP GET method */ public function getTest() { $this->response(success('API HTTP GET call test succeed'), REST_Controller::HTTP_OK); } /** * Test HTTP POST method */ public function postTest() { $this->response(success('API HTTP POST call test succeed'), REST_Controller::HTTP_OK); } }