/** * Reads a message from the socket * * @return MessageInterface Message read from the socket */ public function read() { $this->logger->debug('Reading a new message from the socket'); return $this->engine->read(); }
/** * Reads a message from the socket * * @return MessageInterface Message read from the socket */ public function read() { return $this->engine->read(); }