From d8af9b4b43e58b319b271e011d7b0befec7b937d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Thu, 10 Jul 2025 01:08:49 +0200 Subject: [PATCH] remove JobBatchBootstrapper --- src/Bootstrappers/JobBatchBootstrapper.php | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/Bootstrappers/JobBatchBootstrapper.php diff --git a/src/Bootstrappers/JobBatchBootstrapper.php b/src/Bootstrappers/JobBatchBootstrapper.php deleted file mode 100644 index db4d8157..00000000 --- a/src/Bootstrappers/JobBatchBootstrapper.php +++ /dev/null @@ -1,39 +0,0 @@ -deprecatedNotice(); - } - - protected function deprecatedNotice(): void - { - if ($this->app->environment() == 'local' && $this->app->hasDebugModeEnabled()) { - throw new Exception("JobBatchBootstrapper is not supported anymore, please remove it from your tenancy config. Job batches should work out of the box in Laravel 11. If they don't, please open a bug report."); - } - } - - public function revert(): void - { - $this->deprecatedNotice(); - } -}