koel/app/Events/Event.php

17 lines
222 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Events;
abstract class Event
{
2018-08-19 09:05:33 +00:00
/**
* Get the channels the event should be broadcast on.
*
* @return array
*/
public function broadcastOn()
{
return [];
}
2015-12-13 04:42:28 +00:00
}