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 b22b0b2 + 9072a43 commit 92a1727Copy full SHA for 92a1727
src/Query/TcpTransportExecutor.php
@@ -185,7 +185,7 @@ public function query(Query $query)
185
// set socket to non-blocking and wait for it to become writable (connection success/rejected)
186
\stream_set_blocking($socket, false);
187
if (\function_exists('stream_set_chunk_size')) {
188
- \stream_set_chunk_size($socket, (1 << 31) - 1); // @codeCoverageIgnore
+ \stream_set_chunk_size($socket, (int) ((1 << 31) - 1)); // @codeCoverageIgnore
189
}
190
$this->socket = $socket;
191
0 commit comments