Skip to content

Commit 515178e

Browse files
committed
Fix connection port type
1 parent 16cadc3 commit 515178e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Client.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,11 +241,11 @@ public function getConnectPassword(): string
241241
}
242242

243243
/**
244-
* @return int
244+
* @return string
245245
*/
246-
public function getConnectPort(): int
246+
public function getConnectPort(): string
247247
{
248-
return $this->connectPort;
248+
return strval($this->connectPort);
249249
}
250250

251251
/**

0 commit comments

Comments
 (0)