You are here

public function PharStreamWrapper::unlink in Drupal 7

Parameters

string $path:

Return value

bool

File

misc/typo3/phar-stream-wrapper/src/PharStreamWrapper.php, line 391

Class

PharStreamWrapper

Namespace

TYPO3\PharStreamWrapper

Code

public function unlink($path) {
  $this
    ->assert($path, Behavior::COMMAND_UNLINK);
  return $this
    ->invokeInternalStreamWrapper('unlink', $path, $this->context);
}