Implements Drupal\Core\Config\StorageInterface::delete().
Overrides StorageInterface::delete
public function delete($name) {
// If the cache was the first to be deleted, another process might start
// rebuilding the cache before the storage is gone.
if ($this->storage
->delete($name)) {
$this->cache
->delete($name);
return TRUE;
}
return FALSE;
}