File "HelperService.php"

Full Path: /home/fundopuh/trader.fxex.org/app/Services/HelperService.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);
        }
    }
}