You are here

function StreamWrapper::stream_eof in X Autoload 7.3

Return value

bool

File

tests/Drupal/xautoload/Tests/StreamWrapper.php, line 126

Class

StreamWrapper
Intercept calls to the filesystem, so we don't have to create fixture files.

Namespace

Drupal\xautoload\Tests

Code

function stream_eof() {
  return $this->position >= strlen($this->contents);
}