You are here

public function vfsStreamWrapperRecordingProxy::stream_tell 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_tell()

returns the current position of the stream

Return value

int

Overrides vfsStreamWrapper::stream_tell

File

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

Class

vfsStreamWrapperRecordingProxy
Stream wrapper to mock file system requests.

Namespace

org\bovigo\vfs

Code

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