code = $code; $this->message = $message; $this->data = $data; } public function isSuccess() { if ($this->code == EXIT_SUCCESS) { return true; } else { return false; } } public function getMessage() { return $this->message; } public function getCode() { return $this->code; } public function getData() { return $this->data; } }