externalSkuId = $externalSkuId; $this->cost = $cost; } /** * Execute the job. * * @return void * @throws GuzzleException */ public function handle() { $url = 'http://shop.chutang66.com/miaoxuan/cost'; $method = 'PUT'; $headers = [ 'headers' => ['Content-type' => 'application/x-www-form-urlencoded;charset=UTF-8'], 'form_params' => [ 'external_sku_id' => $this->externalSkuId, 'cost' => $this->cost, ] ]; (new Client())->request($method, $url, $headers); } }