koel/app/Events/SongsBatchUnliked.php

21 lines
384 B
PHP

<?php
namespace App\Events;
use App\Models\User;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Collection;
class SongsBatchUnliked extends Event
{
use SerializesModels;
public Collection $songs;
public User $user;
public function __construct(Collection $songs, User $user)
{
$this->songs = $songs;
$this->user = $user;
}
}