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 f2a27c4 commit 0c60565Copy full SHA for 0c60565
Factory/HttpFoundationFactory.php
@@ -30,7 +30,7 @@
30
class HttpFoundationFactory implements HttpFoundationFactoryInterface
31
{
32
/**
33
- * @var int Maximum output buffering size for each iteration when sending the response.
+ * @var int maximum output buffering size for each iteration when sending the response
34
*/
35
private $responseBufferMaxLength;
36
@@ -256,13 +256,13 @@ private function createStreamedResponseCallback(StreamInterface $body)
256
$body->rewind();
257
}
258
259
- if (! $body->isReadable()) {
+ if (!$body->isReadable()) {
260
echo $body;
261
262
return;
263
264
265
- while (! $body->eof()) {
+ while (!$body->eof()) {
266
echo $body->read($responseBufferMaxLength);
267
268
};
0 commit comments