request->getVar("id"); $point = intval($this->request->getVar("point")); $sign = $this->request->getVar("point") ?? "+"; $user = new UserLibrary(); $user->setPoint($id, $point, $sign); return "완료되었습니다."; } catch (\Exception $e) { log_message("error", $e->getMessage()); return $e->getMessage(); } } }