blob: a4802fe40ebb820c13f9f713f2bd3fc815358e44 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Broadcasting;
4
5interface ShouldBroadcast
6{
7 /**
8 * Get the channels the event should broadcast on.
9 *
10 * @return \Illuminate\Broadcasting\Channel|\Illuminate\Broadcasting\Channel[]
11 */
12 public function broadcastOn();
13}