public function ConfigProviderConfigInstaller::getSourceStorage in Configuration Provider 8
Same name and namespace in other branches
- 8.2 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\ProxyClassCode
public function getSourceStorage() {
return $this
->lazyLoadItself()
->getSourceStorage();
}