Skip to content

Commit f98c177

Browse files
[HttpKernel] Add parameters kernel.runtime_mode and kernel.runtime_mode.*, all set from env var APP_RUNTIME_MODE
1 parent 2970be3 commit f98c177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Response.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ public function send(/* bool $flush = true */): static
433433
fastcgi_finish_request();
434434
} elseif (\function_exists('litespeed_finish_request')) {
435435
litespeed_finish_request();
436-
} elseif (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) {
436+
} elseif (!\in_array(\PHP_SAPI, ['cli', 'phpdbg', 'embed'], true)) {
437437
static::closeOutputBuffers(0, true);
438438
flush();
439439
}

0 commit comments

Comments
 (0)