You are here

public function vfsStreamWrapperRecordingProxy::url_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::url_stat()

returns status of url

Parameters

string $path path of url to return status for:

int $flags flags set by the stream API:

Return value

array

Overrides vfsStreamWrapper::url_stat

File

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

Class

vfsStreamWrapperRecordingProxy
Stream wrapper to mock file system requests.

Namespace

org\bovigo\vfs

Code

public function url_stat($path, $flags) {
  self::recordMethodCall('url_stat', $path);
  return parent::url_stat($path, $flags);
}