File "HelperService-20250405110109.php"
Full Path: /home/fundopuh/trader.fxex.org/app/Services/HelperService-20250405110109.php
File size: 347 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// this Code is Cracked by dharunMods-YouTube-Channel
namespace App\Services;
use Illuminate\Support\Facades\Cache;
class HelperService
{
// static method to forget cache item if it exists
public static function cacheForget($key): void
{
if (Cache::has($key)) {
Cache::forget($key);
}
}
}