method = $method; $this->url = $url; $this->data = $data; $this->headers = $headers; } /** * Execute the job. * * @return void */ public function handle() { Log::info("异步http请求"); CommonService::http($this->method, $this->url, $this->data,$this->headers); } }