예제 #1
0
 /**
  * 未匹配时的默认回复.
  *
  * @param AccountModel $account 公众号
  * @param array        $message 消息
  *
  * @return Response
  */
 private function handleDefault(AccountModel $account, $message)
 {
     $reply = $this->replyRepository->skipCriteria()->getDefaultReply($account->id);
     return $this->messageService->makeText($reply['content']);
 }