1
0
mirror of https://github.com/Rogiel/php-mpq synced 2025-12-11 10:22:47 +00:00

Implements end-of-file calls on streams

This commit is contained in:
2016-01-18 11:12:49 -02:00
parent aeb01ce902
commit 2669ee5738
7 changed files with 44 additions and 1 deletions

View File

@@ -69,4 +69,8 @@ class BinaryStreamParser {
return $this->stream->readBytes($size);
}
public function eof() {
return $this->stream->eof();
}
}