i just try to null the script with the given instructions, but is still redirecting me to
https://activeitzone.com/activation/ for activation, can some one help me to null the script for me?
<?php
namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;
class CoreComponentRepository
{
public static function instantiateShopRepository() {}
public static function initializeCache() {
foreach(Addon::all() as $addon){
if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
}
}
}