radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
556 B
23 lines
556 B
<?php
|
|
|
|
namespace Illuminate\Events;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Contracts\Queue\Factory as QueueFactoryContract;
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register the service provider.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->singleton('events', function ($app) {
|
|
return (new Dispatcher($app))->setQueueResolver(function () use ($app) {
|
|
return $app->make(QueueFactoryContract::class);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|