コード例 #1
0
 /**
  * Close the connection
  *
  * @return bool
  */
 public function close()
 {
     return $this->mailer->close();
 }
コード例 #2
0
 /**
  * @expectedException SimpleMailReceiver\Exceptions\SimpleMailReceiverException
  * @expectedExceptionMessage Error closing
  */
 public function testCloseException()
 {
     $this->mailer = new Mailserver(null, new \SimpleMailReceiver\Exceptions\ExceptionThrower());
     $this->mailer->close();
 }