koel/app/Events/LibraryChanged.php

24 lines
335 B
PHP
Raw Normal View History

2016-02-02 07:47:00 +00:00
<?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 [];
}
}