You are here

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

opens a directory

Parameters

string $path:

int $options:

Return value

bool

Overrides vfsStreamWrapper::dir_opendir

File

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

Class

vfsStreamWrapperRecordingProxy
Stream wrapper to mock file system requests.

Namespace

org\bovigo\vfs

Code

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