diff --git a/app/Jobs/Entity/ActionEntity.php b/app/Jobs/Entity/ActionEntity.php deleted file mode 100644 index 1334240f3314..000000000000 --- a/app/Jobs/Entity/ActionEntity.php +++ /dev/null @@ -1,40 +0,0 @@ -action = $action; - $this->entity = $entity; - } - - /** - * Execute the job. - * - * @return void - */ - public function handle(BaseRepository $baseRepo) - { - return $baseRepo->{$this->action}($this->entity); - } -}