10000 [VarDumper] Make the server TCP connection sync · symfony/symfony@7580ada · GitHub
[go: up one dir, main page]

Skip to content

Commit 7580ada

Browse files
committed
[VarDumper] Make the server TCP connection sync
1 parent 8b65de5 commit 7580ada

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/VarDumper/Server/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ private function createSocket()
9191
{
9292
set_error_handler([self::class, 'nullErrorHandler']);
9393
try {
94-
return stream_socket_client($this->host, $errno, $errstr, 3, \STREAM_CLIENT_CONNECT | \STREAM_CLIENT_ASYNC_CONNECT);
94+
return stream_socket_client($this->host, $errno, $errstr, 3);
9595
} finally {
9696
restore_error_handler();
9797
}

0 commit comments

Comments
 (0)
0