Habari\Cache::get_group PHP Méthode

get_group() public static méthode

Returns the group from the cache.
public static get_group ( $group ) : mixed
Résultat 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);
    }