function MTimeProtectedFastFileStorage::delete
Overrides FileStorage::delete
File
- 
              core/lib/ Drupal/ Component/ PhpStorage/ MTimeProtectedFastFileStorage.php, line 141 
Class
- MTimeProtectedFastFileStorage
- Stores PHP code in files with securely hashed names.
Namespace
Drupal\Component\PhpStorageCode
public function delete($name) {
  $path = $this->getContainingDirectoryFullPath($name);
  if (file_exists($path)) {
    return $this->unlink($path);
  }
  return FALSE;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
