response = $response; } /** * 是否需要登录 * @return bool */ public function needLogin(): bool { return $this->need_login; } /** * 处理请求 * @param Message $data * @return Message */ abstract public function handle(Message $data): Message; }