vd/vendor/illuminate/contracts/Broadcasting/ShouldBroadcast.php
2018-11-05 09:26:30 +08:00

16 lines
267 B
PHP

<?php
namespace Illuminate\Contracts\Broadcasting;
use Illuminate\Broadcasting\Channel;
interface ShouldBroadcast
{
/**
* Get the channels the event should broadcast on.
*
* @return Channel|Channel[]
*/
public function broadcastOn();
}