koel/app/Events/PlaybackStarted.php

17 lines
261 B
PHP
Raw Normal View History

2015-12-23 06:26:16 +00:00
<?php
namespace App\Events;
use App\Models\Song;
use App\Models\User;
use Illuminate\Queue\SerializesModels;
class PlaybackStarted extends Event
2015-12-23 06:26:16 +00:00
{
use SerializesModels;
2022-07-29 06:47:10 +00:00
public function __construct(public Song $song, public User $user)
2015-12-23 06:26:16 +00:00
{
}
}