public function vfsStreamWrapperRecordingProxy::dir_rewinddir 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_rewinddir()
reset directory iteration
Return value
bool
Overrides vfsStreamWrapper::dir_rewinddir
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ proxy/ vfsStreamWrapperRecordingProxy.php, line 296
Class
- vfsStreamWrapperRecordingProxy
- Stream wrapper to mock file system requests.
Namespace
org\bovigo\vfsCode
public function dir_rewinddir() {
self::recordMethodCall('dir_rewinddir', $this->path);
return parent::dir_rewinddir();
}