You are here

public function vfsStreamWrapper::stream_close in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStreamWrapper.php \org\bovigo\vfs\vfsStreamWrapper::stream_close()

closes the stream

See also

https://github.com/mikey179/vfsStream/issues/40

1 call to vfsStreamWrapper::stream_close()
vfsStreamWrapperRecordingProxy::stream_close in vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/proxy/vfsStreamWrapperRecordingProxy.php
closes the stream
1 method overrides vfsStreamWrapper::stream_close()
vfsStreamWrapperRecordingProxy::stream_close in vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/proxy/vfsStreamWrapperRecordingProxy.php
closes the stream

File

vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStreamWrapper.php, line 414

Class

vfsStreamWrapper
Stream wrapper to mock file system requests.

Namespace

org\bovigo\vfs

Code

public function stream_close() {
  $this->content
    ->lock($this, LOCK_UN);
}