14 lines
214 B
PHP
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();
|
|
}
|
|
}
|