Broadcast.php 663B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. use Illuminate\Contracts\Broadcasting\Factory as BroadcastingFactoryContract;
  4. /**
  5. * @method static void connection($name = null);
  6. * @method static \Illuminate\Broadcasting\Broadcasters\Broadcaster channel(string $channel, callable|string $callback)
  7. * @method static mixed auth(\Illuminate\Http\Request $request)
  8. *
  9. * @see \Illuminate\Contracts\Broadcasting\Factory
  10. */
  11. class Broadcast extends Facade
  12. {
  13. /**
  14. * Get the registered name of the component.
  15. *
  16. * @return string
  17. */
  18. protected static function getFacadeAccessor()
  19. {
  20. return BroadcastingFactoryContract::class;
  21. }
  22. }