You are here

public function vfsStreamWrapperRecordingProxy::stream_seek in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/proxy/vfsStreamWrapperRecordingProxy.php \org\bovigo\vfs\vfsStreamWrapperRecordingProxy::stream_seek()

seeks to the given offset

Parameters

int $offset:

int $whence:

Return value

bool

Overrides vfsStreamWrapper::stream_seek

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/proxy/vfsStreamWrapperRecordingProxy.php, line 162

Class

vfsStreamWrapperRecordingProxy
Stream wrapper to mock file system requests.

Namespace

org\bovigo\vfs

Code

public function stream_seek($offset, $whence) {
  self::recordMethodCall('stream_seek', $this->path);
  return parent::stream_seek($offset, $whence);
}