mirror of
https://github.com/koel/koel
synced 2024-12-01 08:19:18 +00:00
24 lines
335 B
PHP
24 lines
335 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
class LibraryChanged extends Event
|
||
|
{
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the channels the event should be broadcast on.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function broadcastOn()
|
||
|
{
|
||
|
return [];
|
||
|
}
|
||
|
}
|