koel/app/Events/SongLikeToggled.php
2015-12-21 08:50:26 -05:00

50 lines
911 B
PHP

<?php
namespace App\Events;
use App\Models\Interaction;
use App\Models\User;
use Illuminate\Queue\SerializesModels;
class SongLikeToggled extends Event
{
use SerializesModels;
/**
* The ineraction (like/unlike) in action.
*
* @var Interaction
*/
public $interaction;
/**
* The user who carries the action.
*
* @var User
*/
public $user;
/**
* Create a new event instance.
*
* @param Interaction $interaction
* @param User $user
*
* @return void
*/
public function __construct(Interaction $interaction, User $user = null)
{
$this->interaction = $interaction;
$this->user = $user ?: auth()->user();
}
/**
* Get the channels the event should be broadcast on.
*
* @return array
*/
public function broadcastOn()
{
return [];
}
}