koel/app/Events/SongLikeToggled.php
2021-06-05 12:47:56 +02:00

21 lines
435 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 $interaction;
public ?User $user = null;
public function __construct(Interaction $interaction, ?User $user = null)
{
$this->interaction = $interaction;
$this->user = $user ?: auth()->user();
}
}