koel/app/Events/Event.php
2020-12-22 21:11:22 +01:00

16 lines
236 B
PHP

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