phpCAS::hasAttributes PHP Метод

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

Answer true if there are attributes for the authenticated user.
public static hasAttributes ( ) : boolean
Результат boolean
    public static function hasAttributes()
    {
        phpCAS::_validateClientExists();
        try {
            return self::$_PHPCAS_CLIENT->hasAttributes();
        } catch (Exception $e) {
            phpCAS::error(get_class($e) . ': ' . $e->getMessage());
        }
    }