Skip to content

Commit 4534a00

Browse files
coverage
1 parent d74cc25 commit 4534a00

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/Connection.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ protected function connect()
102102
$success = $this->client->connect($this->host, $this->user, $this->password, [
103103
'port' => $this->port,
104104
'ssl_mode' => $this->sslMode,
105-
'auth_type' => $this->flags & OP_XOAUTH2 ? 'XOAUTH2' : 'CHECK'
105+
'auth_type' => $this->flags & OP_XOAUTH2 ? 'XOAUTH2' : 'CHECK',
106+
'timeout' => -1,
106107
]);
107108

108109
if (empty($success)) {
@@ -153,6 +154,14 @@ public function openMailbox()
153154
$this->client->select($this->currentMailbox);
154155
}
155156

157+
/**
158+
*
159+
*/
160+
public static function timeout($timeoutType, $timeout = -1)
161+
{
162+
163+
}
164+
156165
/**
157166
*
158167
*/

0 commit comments

Comments
 (0)