public function vfsStreamWrapperRecordingProxy::dir_readdir in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/proxy/vfsStreamWrapperRecordingProxy.php \org\bovigo\vfs\vfsStreamWrapperRecordingProxy::dir_readdir()
reads directory contents
Return value
string
Overrides vfsStreamWrapper::dir_readdir
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ proxy/ vfsStreamWrapperRecordingProxy.php, line 285
Class
- vfsStreamWrapperRecordingProxy
- Stream wrapper to mock file system requests.
Namespace
org\bovigo\vfsCode
public function dir_readdir() {
self::recordMethodCall('dir_readdir', $this->path);
return parent::dir_readdir();
}