File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -467,7 +467,8 @@ PHP_FUNCTION(frankenphp_handle_request) {
467467 * closing the connection.
468468 */
469469 if (EG (exception )) {
470- if (!zend_is_unwind_exit (EG (exception )) && !zend_is_graceful_exit (EG (exception ))){
470+ if (!zend_is_unwind_exit (EG (exception )) &&
471+ !zend_is_graceful_exit (EG (exception ))) {
471472 zend_exception_error (EG (exception ), E_ERROR );
472473 } else {
473474 /* exit() will jump directly to after php_execute_script */
Original file line number Diff line number Diff line change 11<?php
22
33// simulate Symfony's dd() behavior
4+ // see https://github.com/symfony/http-kernel/blob/7.3/DataCollector/DumpDataCollector.php#L216
45class Dumper
56{
67 private string $ message ;
@@ -25,5 +26,5 @@ public function __destruct()
2526 $ dumper ->dump ($ _GET ['output ' ]);
2627 exit (1 );
2728})) {
28- // noop
29+ // keep handling requests
2930}
You can’t perform that action at this time.
0 commit comments