Zend_Http_Client_Adapter_Socket::__destruct PHP Method

__destruct() public method

If we are in persistent TCP mode, will not close the connection
public __destruct ( )
    public function __destruct()
    {
        if (!$this->config['persistent']) {
            if ($this->socket) {
                $this->close();
            }
        }
    }