status = $status; $this->msg = $msg; $this->data = $data; } /** * @return string which is 'ok' or 'error' */ public function getStatus() { return $this->status; } /** * @return mixed if status = 'error' */ public function getMsg() { return $this->msg; } /** * @return mixed if status = 'ok' */ public function getData() { return $this->data; } }