wi-adrema-plugin/support/ClearCache.php

14 lines
161 B
PHP
Raw Normal View History

2024-06-10 00:13:43 +02:00
<?php
namespace Silva\Adrema\Support;
use Cache;
class ClearCache
{
public function run(): void
{
Cache::forget('adrema-all-events');
}
}