ShouldBroadcast.php 279 B

1234567891011121314
  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[]
  9. */
  10. public function broadcastOn();
  11. }