/** * Closes the connection * * @return $this */ public function close() { $this->logger->debug('Closing the connection to the websocket'); $this->engine->close(); $this->isConnected = false; return $this; }
/** * Closes the connection * * @return $this */ public function close() { $this->engine->close(); $this->isConnected = false; return $this; }
/** * Closes the connection * * @return $this */ public function close() { null !== $this->logger && $this->logger->debug('Closing the connection to the websocket'); $this->engine->close(); return $this; }