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());
        }
    }