You are here

public function StorableConfigBase::getStorage in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/StorableConfigBase.php \Drupal\Core\Config\StorableConfigBase::getStorage()
  2. 9 core/lib/Drupal/Core/Config/StorableConfigBase.php \Drupal\Core\Config\StorableConfigBase::getStorage()

Retrieves the storage used to load and save this configuration object.

Return value

\Drupal\Core\Config\StorageInterface The configuration storage object.

1 call to StorableConfigBase::getStorage()
LanguageConfigOverride::getLangcode in core/modules/language/src/Config/LanguageConfigOverride.php
Returns the language code of this language override.

File

core/lib/Drupal/Core/Config/StorableConfigBase.php, line 120

Class

StorableConfigBase
Provides a base class for configuration objects with storage support.

Namespace

Drupal\Core\Config

Code

public function getStorage() {
  return $this->storage;
}