diff --git a/src/Queue/QueueServiceProvider.php b/src/Queue/QueueServiceProvider.php index 18ec1cb81..56c0b12e2 100644 --- a/src/Queue/QueueServiceProvider.php +++ b/src/Queue/QueueServiceProvider.php @@ -15,6 +15,7 @@ use Flarum\Console\Event\Configuring; use Flarum\Foundation\AbstractServiceProvider; use Illuminate\Contracts\Debug\ExceptionHandler as ExceptionHandling; use Illuminate\Contracts\Queue\Factory; +use Illuminate\Contracts\Queue\Queue; use Illuminate\Queue\Connectors\ConnectorInterface; use Illuminate\Queue\Console as Commands; use Illuminate\Queue\Failed\NullFailedJobProvider; @@ -90,6 +91,8 @@ class QueueServiceProvider extends AbstractServiceProvider return new NullFailedJobProvider(); }); + $this->app->alias('flarum.queue.connection', Queue::class); + $this->app->alias(ConnectorInterface::class, 'queue.connection'); $this->app->alias(Factory::class, 'queue'); $this->app->alias(Worker::class, 'queue.worker');