Beispiel #1
0
 /**
  * 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;
 }
Beispiel #2
0
 /**
  * Closes the connection
  *
  * @return $this
  */
 public function close()
 {
     $this->engine->close();
     $this->isConnected = false;
     return $this;
 }
Beispiel #3
0
 /**
  * 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;
 }