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.
2 parents e58f31d + aba3d0b commit 5b5c7e4Copy full SHA for 5b5c7e4
src/Bolt.php
@@ -112,8 +112,7 @@ private function handshake(): string
112
if (self::$debug)
113
echo 'HANDSHAKE';
114
115
- $this->connection->write(chr(0x60) . chr(0x60) . chr(0xb0) . chr(0x17));
116
- $this->connection->write($this->packProtocolVersions());
+ $this->connection->write(chr(0x60) . chr(0x60) . chr(0xb0) . chr(0x17) . $this->packProtocolVersions());
117
118
$bytes = $this->connection->read(4);
119
if ($bytes == 'HTTP')
0 commit comments