We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69e60b8 commit 39d8539Copy full SHA for 39d8539
src/Runtime/SocketRuntime.php
@@ -38,6 +38,10 @@ public function __construct(?SocketInterface $socket = null)
38
}
39
set_error_handler($this->handleError(...), E_ALL);
40
$this->setReady();
41
+
42
+ // Force loading of PhpError class, because it might not be possible to load the class in the
43
+ // error handler, e.g. when the open files limit is reached
44
+ class_exists(PhpError::class);
45
46
47
/**
0 commit comments