You are here

public function ReadOnlyStorage::delete in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/ReadOnlyStorage.php \Drupal\Core\Config\ReadOnlyStorage::delete()

Deletes a configuration object from the storage.

Parameters

string $name: The name of a configuration object to delete.

Return value

bool TRUE on success, FALSE otherwise.

Overrides StorageInterface::delete

File

core/lib/Drupal/Core/Config/ReadOnlyStorage.php, line 58

Class

ReadOnlyStorage
A ReadOnlyStorage decorates a storage and does not allow writing to it.

Namespace

Drupal\Core\Config

Code

public function delete($name) {
  throw new \BadMethodCallException(__METHOD__ . ' is not allowed on a ReadOnlyStorage');
}