Habari\Cache::has_group PHP Метод

has_group() публичный статический Метод

Is group in the cache?
public static has_group ( string $group ) : boolean
$group string name of the cached group
Результат boolean true if group is cached, false if not
    public static function has_group($group)
    {
        $group = self::site_unique() . $group;
        return self::$instance->_has_group($group);
    }