12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
-
- namespace Illuminate\Bus;
-
- use Illuminate\Support\ServiceProvider;
- use Illuminate\Contracts\Bus\Dispatcher as DispatcherContract;
- use Illuminate\Contracts\Queue\Factory as QueueFactoryContract;
- use Illuminate\Contracts\Bus\QueueingDispatcher as QueueingDispatcherContract;
-
- class BusServiceProvider extends ServiceProvider
- {
- /**
- * Indicates if loading of the provider is deferred.
- *
- * @var bool
- */
- protected $defer = true;
-
- /**
- * Register the service provider.
- *
- * @return void
- */
- public function register()
- {
- $this->app->singleton(Dispatcher::class, function ($app) {
- return new Dispatcher($app, function ($connection = null) use ($app) {
- return $app[QueueFactoryContract::class]->connection($connection);
- });
- });
-
- $this->app->alias(
- Dispatcher::class, DispatcherContract::class
- );
-
- $this->app->alias(
- Dispatcher::class, QueueingDispatcherContract::class
- );
- }
-
- /**
- * Get the services provided by the provider.
- *
- * @return array
- */
- public function provides()
- {
- return [
- Dispatcher::class,
- DispatcherContract::class,
- QueueingDispatcherContract::class,
- ];
- }
- }
|