Horde_Imap_Client_Base_Debug::shutdown PHP Method

shutdown() public method

Shutdown function.
public shutdown ( )
    public function shutdown()
    {
        if (is_resource($this->_stream)) {
            fflush($this->_stream);
            fclose($this->_stream);
            $this->_stream = null;
        }
    }