Skip to content

Commit 56f3d6b

Browse files
committed
Checks for actual exit.
1 parent f3233d5 commit 56f3d6b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

testdata/dd.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ public function __destruct()
2323
$dumper = new Dumper();
2424

2525
while (frankenphp_handle_request(function () use ($dumper) {
26-
$dumper->dump($_GET['output']);
26+
$dumper->dump($_GET['output'] ?? '');
2727
exit(1);
2828
})) {
2929
// keep handling requests
30-
}
30+
}
31+
32+
echo "we should never reach here\n";

0 commit comments

Comments
 (0)