disconnect() public method

Disconnect from the Sieve server.
public disconnect ( boolean $sendLogoutCMD = true )
$sendLogoutCMD boolean Whether to send LOGOUT command before disconnecting.
Ejemplo n.º 1
0
 public function testDisconnect()
 {
     $this->fixture->connect($this->config['host'], $this->config['port']);
     $this->fixture->login($this->config['username'], $this->config['password']);
     $this->fixture->disconnect();
 }