array = $array; } /** * Execute the job. * * @return void */ public function handle() { $array = $this->array; $official_openid = $array['official_openid']; $message = $array['text']; $result = $this->textMessage($message, $official_openid); } public function textMessage($message, $openId) { $app = app('wechat.official_account'); $text = new Text($message); $result = $app->customer_service->message($text)->to($openId)->send(); return $result; } }