action = $action; $this->entity = $entity; } /** * Execute the job. * * @return void */ public function handle(BaseRepository $baseRepo) { return $baseRepo->{$this->action}($this->entity); } }