From 596ca38e25b7872e5e74bcfe2fd1faa19c8f9d81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Drunen?= Date: Tue, 26 Dec 2023 23:44:00 +0100 Subject: [PATCH] Get rid of command for dispatching job --- app/Console/Commands/DispatchJob.php | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 app/Console/Commands/DispatchJob.php diff --git a/app/Console/Commands/DispatchJob.php b/app/Console/Commands/DispatchJob.php deleted file mode 100644 index 1b3634c6..00000000 --- a/app/Console/Commands/DispatchJob.php +++ /dev/null @@ -1,27 +0,0 @@ -argument('job'); - - if (class_exists($className)) { - $className::dispatch(); - } else { - echo 'Couldn\'t find specified job' . PHP_EOL; - } - } -}