Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
assert6 authored Mar 31, 2023
1 parent 77a3208 commit 0f19a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/EventStream.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function __construct(protected Writable $connection, ?ResponseInterface $
$socket->header('Transfer-Encoding', 'chunked');
$socket->header('Cache-Control', 'no-cache');
foreach ($response?->getHeaders() as $name => $values) {
$socket->header($name, implode(", ", $values));
$socket->header($name, implode(', ', $values));
}
}

Expand Down

0 comments on commit 0f19a22

Please sign in to comment.