You are here

public function PhpStorageInterface::delete in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php \Drupal\Component\PhpStorage\PhpStorageInterface::delete()

Deletes PHP code from storage.

Parameters

string $name: The virtual file name. Can be a relative path.

Return value

bool TRUE if the delete succeeded, FALSE if it failed.

2 methods override PhpStorageInterface::delete()
FileReadOnlyStorage::delete in core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php
Deletes PHP code from storage.
FileStorage::delete in core/lib/Drupal/Component/PhpStorage/FileStorage.php
Deletes PHP code from storage.

File

core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php, line 70

Class

PhpStorageInterface
Stores and loads PHP code.

Namespace

Drupal\Component\PhpStorage

Code

public function delete($name);