You are here

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

remove the data under the given path

Parameters

string $path:

Return value

bool

Overrides vfsStreamWrapper::unlink

File

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

Class

vfsStreamWrapperRecordingProxy
Stream wrapper to mock file system requests.

Namespace

org\bovigo\vfs

Code

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