koel/app/Events/Event.php
2018-08-19 11:06:31 +02:00

16 lines
222 B
PHP

<?php
namespace App\Events;
abstract class Event
{
/**
* Get the channels the event should be broadcast on.
*
* @return array
*/
public function broadcastOn()
{
return [];
}
}