You are here

public function SourceStorage::delete in Configuration installer 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/Storage/SourceStorage.php, line 84

Class

SourceStorage
Wraps the sync storage so the config_installer can make modifications.

Namespace

Drupal\config_installer\Storage

Code

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