host = $host; $this->price = $price; } /** * Execute the job. * * @return void */ public function handle(): void { $this->host->cost($this->price); } }