Files
SkinbaseNova/.deploy/artwork-evolution-release/app/Events/Collections/SmartCollectionRulesUpdated.php
2026-04-18 17:02:56 +02:00

17 lines
336 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 SmartCollectionRulesUpdated
{
use Dispatchable, SerializesModels;
public function __construct(public readonly Collection $collection) {}
}