1
0
Fork 0

Correct code style

pull/110/head
Felix Becker 2016-10-24 13:35:08 +02:00 committed by GitHub
parent e7611dc629
commit 4dabd9a240
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class ProtocolStreamReader implements ProtocolReader
$this->input = $input;
Loop\addReadStream($this->input, function() {
if (feof($this->input)) {
throw new RuntimeException("Stream is closed.");
throw new RuntimeException('Stream is closed');
}
while (($c = fgetc($this->input)) !== false && $c !== '') {