You are here

public function StorageBase::getCollectionName in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/KeyValueStore/StorageBase.php \Drupal\Core\KeyValueStore\StorageBase::getCollectionName()
  2. 10 core/lib/Drupal/Core/KeyValueStore/StorageBase.php \Drupal\Core\KeyValueStore\StorageBase::getCollectionName()

Returns the name of this collection.

Return value

string The name of this collection.

Overrides KeyValueStoreInterface::getCollectionName

File

core/lib/Drupal/Core/KeyValueStore/StorageBase.php, line 27

Class

StorageBase
Provides a base class for key/value storage implementations.

Namespace

Drupal\Core\KeyValueStore

Code

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