You are here

public function vfsStreamWrapperRecordingProxy::stream_stat 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_stat()

returns status of stream

Return value

array

Overrides vfsStreamWrapper::stream_stat

File

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

Class

vfsStreamWrapperRecordingProxy
Stream wrapper to mock file system requests.

Namespace

org\bovigo\vfs

Code

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