Skip to content

Commit ffa748e

Browse files
Merge pull request #56 from php-http/analysis-XVGxbO
Applied fixes from StyleCI
2 parents d42a563 + b56fb79 commit ffa748e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Encoding/FilteredStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function eof()
100100
protected function fill()
101101
{
102102
$readFilterCallback = $this->readFilterCallback;
103-
$this->buffer .= $readFilterCallback($this->stream->read(self::BUFFER_SIZE));
103+
$this->buffer .= $readFilterCallback($this->stream->read(self::BUFFER_SIZE));
104104

105105
if ($this->stream->eof()) {
106106
$this->buffer .= $readFilterCallback();

0 commit comments

Comments
 (0)