Microweber\Utils\Adapters\Cache\CacheStore::rememberForever PHP Method

rememberForever() public method

Get an item from the cache, or store the default value forever.
public rememberForever ( string $key, Closure $callback ) : mixed
$key string
$callback Closure
return mixed
    public function rememberForever($key, Closure $callback)
    {
        return $this->adapter->rememberForever($key, $callback);
    }