mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +00:00
21 lines
410 B
PHP
21 lines
410 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();
|
|
}
|
|
}
|