ShouldBroadcast.php 295 B

12345678910111213
  1. <?php
  2. namespace Illuminate\Contracts\Broadcasting;
  3. interface ShouldBroadcast
  4. {
  5. /**
  6. * Get the channels the event should broadcast on.
  7. *
  8. * @return \Illuminate\Broadcasting\Channel|\Illuminate\Broadcasting\Channel[]|string[]|string
  9. */
  10. public function broadcastOn();
  11. }