You are here

public function GhostStorage::delete in Configuration Split 8

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

src/Config/GhostStorage.php, line 29

Class

GhostStorage
Class GhostStorage.

Namespace

Drupal\config_split\Config

Code

public function delete($name) {
  return TRUE;
}