uid = $uid; $this->type = $type; $this->trigger_type = $trigger_type; } /** * Execute the job. * * @return void */ public function handle() { $service = new UserTaskService($this->uid); $service->trigger($this->type, $this->trigger_type); } }