Habari\Cache::get_group PHP Method

get_group() public static method

Returns the group from the cache.
public static get_group ( $group ) : mixed
return mixed The item value or null if it doesn't exist in cache
    public static function get_group($group)
    {
        $group = self::site_unique() . $group;
        return self::$instance->_get_group($group);
    }