Habari\APCCache::_get PHP Method

_get() protected method

Returns the named value from the cache.
protected _get ( string $name, $group ) : mixed
$name string The name of the cached item
return mixed The item value or null if it doesn't exist in cache
    protected function _get($name, $group)
    {
        if (!$this->enabled) {
            return null;
        }
        return apc_fetch(implode(':', array($this->prefix, $group, $name)));
    }