return boolean in Ciose::stream_seek

This commit is contained in:
Jörn Friedrich Dreyer 2014-09-22 11:33:55 +02:00
parent b752cb98d8
commit 561a7e47cd
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class Close {
}
public function stream_seek($offset, $whence = SEEK_SET) {
fseek($this->source, $offset, $whence);
return fseek($this->source, $offset, $whence) === 0;
}
public function stream_tell() {