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