Open the connection. */
()
| 79 | |
| 80 | /** Open the connection. */ |
| 81 | public function connect(): bool |
| 82 | { |
| 83 | log_message("Connecting to {$this->host}:{$this->port}"); |
| 84 | $this->markConnected(); |
| 85 | $this->connected = true; |
| 86 | return true; |
| 87 | } |
| 88 | |
| 89 | /** Close the connection. */ |
| 90 | public function disconnect(): void |
no test coverage detected