conn = $conn; } /** * @return ReactConn */ public function getConnection(): ReactConn { return $this->conn; } /** * {@inheritdoc} */ public function send($data) { $this->conn->write($data); return $this; } /** * {@inheritdoc} */ public function close() { $this->conn->end(); } }