SlightPHP\POP3::Disconnect PHP Method

Disconnect() public method

Disconnect from the POP3 server
public Disconnect ( )
    public function Disconnect()
    {
        $this->sendString('QUIT');
        fclose($this->pop_conn);
    }