Microweber\Providers\CacheManager::get PHP Method

get() public method

If data is not found it return false *
public get ( string $cache_id, string $cache_group = 'global', boolean $timeout = false ) : mixed
$cache_id string id of the cache
$cache_group string (default is 'global') - this is the subfolder in the cache dir.
$timeout boolean
return mixed returns array of cached data or false
    public function get($cache_id, $cache_group = 'global', $timeout = false)
    {
        return $this->adapter->get($cache_id, $cache_group, $timeout);
    }