Habari\Cache::get_group PHP 메소드

get_group() 공개 정적인 메소드

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