You are here

public function ConfigSnapshotStorage::getCollectionName in Config Snapshot 8

Gets the name of the current collection the storage is using.

Return value

string The current collection name.

Overrides StorageInterface::getCollectionName

1 call to ConfigSnapshotStorage::getCollectionName()
ConfigSnapshotStorage::deleteAll in src/ConfigSnapshotStorage.php
Deletes configuration objects whose names start with a given prefix.

File

src/ConfigSnapshotStorage.php, line 264

Class

ConfigSnapshotStorage
Provides a configuration storage saved as simple configuration.

Namespace

Drupal\config_snapshot

Code

public function getCollectionName() {
  return $this->collection;
}