You are here

public function DecoratingConfigInstaller::getSourceStorage in Configuration selector 8.2

Same name and namespace in other branches
  1. 8 src/DecoratingConfigInstaller.php \Drupal\config_selector\DecoratingConfigInstaller::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/DecoratingConfigInstaller.php, line 80

Class

DecoratingConfigInstaller
Decorates the config.installer service so install_install_profiles() works.

Namespace

Drupal\config_selector

Code

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