data = $data; } /** * Handle the job. * * @param \Illuminate\Contracts\Console\Kernel $kernel * @return void */ public function handle(KernelContract $kernel) { $kernel->call(...array_values($this->data)); } /** * Get the display name for the queued job. * * @return string */ public function displayName() { return array_values($this->data)[0]; } }