mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-07-16 11:26:56 +08:00
13 lines
218 B
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) {}
|
|
}
|