52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Illuminate\Broadcasting;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Contracts\Broadcasting\Factory as BroadcastingFactory;
|
|
use Illuminate\Contracts\Broadcasting\Broadcaster as BroadcasterContract;
|
|
|
|
class BroadcastServiceProvider 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(BroadcastManager::class, function ($app) {
|
|
return new BroadcastManager($app);
|
|
});
|
|
|
|
$this->app->singleton(BroadcasterContract::class, function ($app) {
|
|
return $app->make(BroadcastManager::class)->connection();
|
|
});
|
|
|
|
$this->app->alias(
|
|
BroadcastManager::class, BroadcastingFactory::class
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the services provided by the provider.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function provides()
|
|
{
|
|
return [
|
|
BroadcastManager::class,
|
|
BroadcastingFactory::class,
|
|
BroadcasterContract::class,
|
|
];
|
|
}
|
|
}
|