Skip to content

Commit 0c60565

Browse files
committed
CS fixes
1 parent f2a27c4 commit 0c60565

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Factory/HttpFoundationFactory.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
class HttpFoundationFactory implements HttpFoundationFactoryInterface
3131
{
3232
/**
33-
* @var int Maximum output buffering size for each iteration when sending the response.
33+
* @var int maximum output buffering size for each iteration when sending the response
3434
*/
3535
private $responseBufferMaxLength;
3636

@@ -256,13 +256,13 @@ private function createStreamedResponseCallback(StreamInterface $body)
256256
$body->rewind();
257257
}
258258

259-
if (! $body->isReadable()) {
259+
if (!$body->isReadable()) {
260260
echo $body;
261261

262262
return;
263263
}
264264

265-
while (! $body->eof()) {
265+
while (!$body->eof()) {
266266
echo $body->read($responseBufferMaxLength);
267267
}
268268
};

0 commit comments

Comments
 (0)