1
0
Fork 0

Add missing space

pull/31/head
Felix Becker 2016-09-29 20:19:10 +02:00
parent 365e128232
commit 7633bb5b3a
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class ProtocolStreamReader implements ProtocolReader
{
$this->input = $input;
Loop\addReadStream($this->input, function() {
while(($c = fgetc($this->input)) !== false && $c !== '') {
while (($c = fgetc($this->input)) !== false && $c !== '') {
$this->buffer .= $c;
switch ($this->parsingMode) {
case ParsingMode::HEADERS: