You are here

protected function ConfigImporter::getConfigStorage in Currency 8.3

Gets the currency config storage.

Return value

\Drupal\Core\Config\StorageInterface

File

src/ConfigImporter.php, line 85

Class

ConfigImporter
Provides a config importer.

Namespace

Drupal\currency

Code

protected function getConfigStorage() {
  if (!$this->configStorage) {
    $this->configStorage = new FileStorage($this->moduleHandler
      ->getModule('currency')
      ->getPath() . '/config/default/');
  }
  return $this->configStorage;
}