mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +00:00
21 lines
366 B
PHP
21 lines
366 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Collection;
|
|
|
|
class SongsBatchLiked extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
public $songs;
|
|
public $user;
|
|
|
|
public function __construct(Collection $songs, User $user)
|
|
{
|
|
$this->songs = $songs;
|
|
$this->user = $user;
|
|
}
|
|
}
|