composer package updates
[openemr.git] / vendor / illuminate / contracts / Broadcasting / ShouldBroadcast.php
blobb051e3be3c05940a9415b7d736b69e78c0688280
1 <?php
3 namespace Illuminate\Contracts\Broadcasting;
5 use Illuminate\Broadcasting\Channel;
7 interface ShouldBroadcast
9 /**
10 * Get the channels the event should broadcast on.
12 * @return Channel|Channel[]
14 public function broadcastOn();