<?php
namespace IlluminateContractsBroadcasting;
interface ShouldBroadcast
{
/**
* Get the channels the event should broadcast on.
*
* @return IlluminateBroadcastingChannel|IlluminateBroadcastingChannel[]
*/
public function broadcastOn();
}