mirror of
https://github.com/dunglas/frankenphp
synced 2024-11-22 16:19:32 +00:00
e0cf262224
* test: fix and refactor some flaky tests * better fix for flush.php * simpler DHA config
10 lines
132 B
PHP
10 lines
132 B
PHP
<?php
|
|
|
|
do {
|
|
$ok = frankenphp_handle_request(function (): void {
|
|
echo 'Hello, world';
|
|
});
|
|
|
|
die();
|
|
} while ($ok);
|