You are here

public function SplitCollectionStorage::delete in Configuration Split 2.0.x

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/SplitCollectionStorage.php, line 85

Class

SplitCollectionStorage
A config storage that lives in a collection of another config storage.

Namespace

Drupal\config_split\Config

Code

public function delete($name) {
  return $this
    ->getStorage()
    ->delete($name);
}