public function SourceStorage::getCollectionName in Configuration installer 8
Gets the name of the current collection the storage is using.
Return value
string The current collection name.
Overrides StorageInterface::getCollectionName
File
- src/
Storage/ SourceStorage.php, line 140
Class
- SourceStorage
- Wraps the sync storage so the config_installer can make modifications.
Namespace
Drupal\config_installer\StorageCode
public function getCollectionName() {
return $this->baseStorage
->getCollectionName();
}