CAS_Client::_hasAttribute PHP Method

_hasAttribute() private method

Check whether a specific attribute with a name is available
private _hasAttribute ( string $key ) : boolean
$key string name of attribute
return boolean is attribute available
    private function _hasAttribute($key)
    {
        return is_array($this->_attributes) && array_key_exists($key, $this->_attributes);
    }
CAS_Client