Skip to content

Commit 51985c9

Browse files
Revert "minor #60377 [HttpFoundation] Emit PHP warning when Response::sendHeaders() is called while output has already been sent (ivo95v)"
This reverts commit cf554e1, reversing changes made to 392d0c9.
1 parent 1714f71 commit 51985c9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/Symfony/Component/HttpFoundation/Response.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -317,11 +317,6 @@ public function sendHeaders(?int $statusCode = null): static
317317
{
318318
// headers have already been sent by the developer
319319
if (headers_sent()) {
320-
if (!\in_array(\PHP_SAPI, ['cli', 'phpdbg', 'embed'], true)) {
321-
$statusCode ??= $this->statusCode;
322-
header(\sprintf('HTTP/%s %s %s', $this->version, $statusCode, $this->statusText), true, $statusCode);
323-
}
324-
325320
return $this;
326321
}
327322

0 commit comments

Comments
 (0)