koel/app/Events/SongLikeToggled.php
2018-09-04 13:25:24 +07:00

21 lines
409 B
PHP

<?php
namespace App\Events;
use App\Models\Interaction;
use App\Models\User;
use Illuminate\Queue\SerializesModels;
class SongLikeToggled extends Event
{
use SerializesModels;
public $interaction;
public $user;
public function __construct(Interaction $interaction, User $user = null)
{
$this->interaction = $interaction;
$this->user = $user ?: auth()->user();
}
}