phpCAS::hasAttributes PHP Method

hasAttributes() public static method

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