You are here

public function ConfigProviderConfigInstaller::getSourceStorage in Configuration Provider 8.2

Same name and namespace in other branches
  1. 8 src/ProxyClass/ConfigProviderConfigInstaller.php \Drupal\config_provider\ProxyClass\ConfigProviderConfigInstaller::getSourceStorage()

Gets the configuration storage that provides the default configuration.

Return value

\Drupal\Core\Config\StorageInterface|null The configuration storage that provides the default configuration. Returns null if the source storage has not been set.

Overrides ConfigInstallerInterface::getSourceStorage

File

src/ProxyClass/ConfigProviderConfigInstaller.php, line 106

Class

ConfigProviderConfigInstaller
Provides a proxy class for \Drupal\config_provider\ConfigProviderConfigInstaller.

Namespace

Drupal\config_provider\ProxyClass

Code

public function getSourceStorage() {
  return $this
    ->lazyLoadItself()
    ->getSourceStorage();
}