mirror of
https://github.com/dunglas/frankenphp.git
synced 2026-04-24 01:50:46 +08:00
delete source/downloads after building in script, add .editorconfig (#2000)
* delete source/downloads after building in script, not in dockerfile * add editorconfig * eol * cs fix * added \n there * we expect Hello\n * Change tab width for shell scripts to 4 spaces * bring back embed comment
This commit is contained in:
Vendored
+16
-16
@@ -1,16 +1,16 @@
|
||||
<?php
|
||||
|
||||
ignore_user_abort(true);
|
||||
|
||||
require_once __DIR__.'/_executor.php';
|
||||
|
||||
return function () {
|
||||
if($_GET['finish'] ?? false) {
|
||||
frankenphp_finish_request();
|
||||
}
|
||||
|
||||
echo 'hi';
|
||||
flush();
|
||||
$status = (string) connection_status();
|
||||
error_log("request {$_GET['i']}: " . $status);
|
||||
};
|
||||
<?php
|
||||
|
||||
ignore_user_abort(true);
|
||||
|
||||
require_once __DIR__.'/_executor.php';
|
||||
|
||||
return function () {
|
||||
if($_GET['finish'] ?? false) {
|
||||
frankenphp_finish_request();
|
||||
}
|
||||
|
||||
echo 'hi';
|
||||
flush();
|
||||
$status = (string) connection_status();
|
||||
error_log("request {$_GET['i']}: " . $status);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user