Files
SkinbaseNova/app/Events/Collections/CollectionLiked.php
2026-03-28 19:15:39 +01:00

17 lines
353 B
PHP

<?php
declare(strict_types=1);
namespace App\Events\Collections;
use App\Models\Collection;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class CollectionLiked
{
use Dispatchable, SerializesModels;
public function __construct(public readonly Collection $collection, public readonly int $userId) {}
}