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(); - } -}