2
0
Fork 0
mirror of https://github.com/koel/koel synced 2024-12-27 04:53:08 +00:00
koel/app/Events/SongStartedPlaying.php
2022-07-29 09:04:44 +02:00

16 lines
264 B
PHP

<?php
namespace App\Events;
use App\Models\Song;
use App\Models\User;
use Illuminate\Queue\SerializesModels;
class SongStartedPlaying extends Event
{
use SerializesModels;
public function __construct(public Song $song, public User $user)
{
}
}