mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-07-16 11:26:56 +08:00
19 lines
371 B
PHP
19 lines
371 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Enums\AssetType;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
readonly class AssetCacheMissed
|
|
{
|
|
use Dispatchable;
|
|
|
|
public function __construct(
|
|
public AssetType $type,
|
|
public string $slug,
|
|
public string $file,
|
|
public string $upstreamUrl,
|
|
public ?string $revision = null,
|
|
) {}
|
|
}
|