AspireCloud/app/Events/AssetCacheHit.php

13 lines
218 B
PHP

<?php
namespace App\Events;
use App\Models\WpOrg\Asset;
use Illuminate\Foundation\Events\Dispatchable;
readonly class AssetCacheHit
{
use Dispatchable;
public function __construct(public Asset $asset) {}
}