service = $service; $this->data = $data; } /** * Execute the job. * * @return void */ public function handle(): void { $this->service->handle($this->data); } /** * Handle a job failure. * * @param \Throwable $exception * @return void */ public function failed(Throwable $exception): void { $this->service->failed($exception); } }