Files
onboard/app/Services/Cache/CacheInvalidator.php
2026-04-22 20:36:24 +09:00

16 lines
239 B
PHP

<?php
namespace App\Services\Cache;
use Illuminate\Support\Facades\Cache;
class CacheInvalidator
{
public function forget(array $keys): void
{
foreach ($keys as $key) {
Cache::forget($key);
}
}
}