order_id = $order_id; } private $order_id; /** * Execute the job. * * @return void */ public function handle() { $orderService = new OrderService(); try { $result = $orderService->closeOrder($this->order_id); } catch (ApiException $e) { } catch (\Exception $e) { } } }