You are here

public function vfsStreamWrapper::stream_eof in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStreamWrapper.php \org\bovigo\vfs\vfsStreamWrapper::stream_eof()

checks whether stream is at end of file

Return value

bool

1 call to vfsStreamWrapper::stream_eof()
vfsStreamWrapperRecordingProxy::stream_eof in vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/proxy/vfsStreamWrapperRecordingProxy.php
checks whether stream is at end of file
1 method overrides vfsStreamWrapper::stream_eof()
vfsStreamWrapperRecordingProxy::stream_eof in vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/proxy/vfsStreamWrapperRecordingProxy.php
checks whether stream is at end of file

File

vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStreamWrapper.php, line 605

Class

vfsStreamWrapper
Stream wrapper to mock file system requests.

Namespace

org\bovigo\vfs

Code

public function stream_eof() {
  return $this->content
    ->eof();
}