Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
app
/
Services
:
HelperService.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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); } } }