mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
16 lines
236 B
PHP
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 [];
|
|
}
|
|
}
|