Auth_OpenID_Mapping::del PHP Method

del() public method

Deletes a key-value pair from the mapping with the specified key.
public del ( $key )
    function del($key)
    {
        $index = array_search($key, $this->keys);
        if ($index !== false) {
            unset($this->keys[$index]);
            unset($this->values[$index]);
            $this->_reflow();
            return true;
        }
        return false;
    }