You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,7 +171,7 @@ as received data from database.
171
171
$conn = new \Bolt\connection\Socket('127.0.0.1', 7687);
172
172
// Create new Bolt instance and provide connection object.
173
173
$bolt = new \Bolt\Bolt($conn);
174
-
// Set requested protocol versions ..you can add up to 4 versions
174
+
// If needed set requested protocol versions ..you can add up to 4 versions
175
175
$bolt->setProtocolVersions(5.4);
176
176
// Build and get protocol version instance which creates connection and executes handshake.
177
177
$protocol = $bolt->build();
@@ -198,7 +198,7 @@ foreach ($protocol->getResponses() as $response) {
198
198
}
199
199
```
200
200
201
-
:information_source: Default settings for bolt protocol version is 4.3, 4.4 and 5.0 to 5.8. If you are within this list you can ommit calling `$bolt->setProtocolVersions(5.4);`.
201
+
:information_source: Default settings for bolt protocol version is 4.3, 4.4 and 5.0 to 5.8. If you are within this list you can ommit calling `$bolt->setProtocolVersions();`.
0 commit comments