We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9173a70 commit a94e5dfCopy full SHA for a94e5df
rdb/Handshake.php
@@ -46,9 +46,11 @@ public function nextMessage($response)
46
. chr(0);
47
} elseif ($this->state == 1) {
48
if (strpos($response, "ERROR") === 0) {
49
- throw new RqlDriverError("Received an unexpected reply. You may be attempting to connect to "
50
- . "a RethinkDB server that is too old for this driver. The minimum "
51
- . "supported server version is 2.3.0.");
+ throw new RqlDriverError(
+ "Received an unexpected reply. You may be attempting to connect to "
+ . "a RethinkDB server that is too old for this driver. The minimum "
52
+ . "supported server version is 2.3.0."
53
+ );
54
}
55
56
$json = json_decode($response, true);
0 commit comments