koel/app/Events/LibraryChanged.php
2016-02-02 16:01:11 +08:00

23 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 [];
}
}