koel/app/Events/Event.php

17 lines
236 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.
*
2020-12-22 20:11:22 +00:00
* @return array<mixed>
2018-08-19 09:05:33 +00:00
*/
2020-12-22 20:11:22 +00:00
public function broadcastOn(): array
2018-08-19 09:05:33 +00:00
{
return [];
}
2015-12-13 04:42:28 +00:00
}