Files
my-projects-website/app/application/app/Services/ClearCacheCommandHandler.php
T
kor-elf 224240708d The cache was not cleared when saving
Clearing the cache using tags did not work correctly. Had to abandon them.
2025-08-22 16:14:22 +05:00

14 lines
214 B
PHP

<?php declare(strict_types=1);
namespace App\Services;
use Illuminate\Support\Facades\Cache;
final readonly class ClearCacheCommandHandler
{
public function all(): void
{
Cache::flush();
}
}