We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f25257 commit cb28690Copy full SHA for cb28690
src/Services/HttpPublisher.php
@@ -26,8 +26,7 @@ public function publish($content): void
26
http_response_code($content->getStatusCode());
27
28
foreach ($content->getHeaders() as $name => $values) {
29
- $value = $content->getHeaderLine($name);
30
- header($name . ': ' . $value);
+ header($name . ': ' . $content->getHeaderLine($name));
31
}
32
33
fwrite($output, $content->getBody());
0 commit comments