Файл: system/vendor/illuminate/support/Facades/Broadcast.php
Строк: 37
<?php
namespace IlluminateSupportFacades;
use IlluminateContractsBroadcastingFactory as BroadcastingFactoryContract;
/**
* @method static void connection($name = null);
* @method static IlluminateBroadcastingBroadcastersBroadcaster channel(string $channel, callable|string $callback, array $options = [])
* @method static mixed auth(IlluminateHttpRequest $request)
* @method static void routes()
*
* @see IlluminateContractsBroadcastingFactory
*/
class Broadcast extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return BroadcastingFactoryContract::class;
}
}