CodeExplorer createConfigCollectionName example
if (!
empty($data)) { $override->
initWithData($data);
} return $override;
} /**
* {@inheritdoc}
*/
public function getStorage($langcode) { if (!
isset($this->storages
[$langcode])) { $this->storages
[$langcode] =
$this->baseStorage->
createCollection($this->
createConfigCollectionName($langcode));
} return $this->storages
[$langcode];
} /**
* {@inheritdoc}
*/
public function getCacheSuffix() { return $this->language ?
$this->language->
getId() : NULL;
}