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.
1 parent add5e63 commit b014967Copy full SHA for b014967
tests/end-to-end/regression/5592-process-isolation-events.phpt
@@ -8,7 +8,11 @@ $_SERVER['argv'][] = '--process-isolation';
8
$_SERVER['argv'][] = '--debug';
9
$_SERVER['argv'][] = __DIR__ . '/5592/Issue5592TestIsolation.php';
10
11
-set_exception_handler(static fn () => null);
+function global5592IsolationEventsExceptionHandler(Throwable $exception): void
12
+{
13
+}
14
+
15
+set_exception_handler('global5592IsolationEventsExceptionHandler');
16
17
require_once __DIR__ . '/../../bootstrap.php';
18
(new PHPUnit\TextUI\Application)->run($_SERVER['argv']);
0 commit comments