You are here

private function Config::getImmutableConfig in Rename Admin Paths 8.2

Return value

ImmutableConfig

File

src/Config.php, line 57

Class

Config
Config for rename_admin_paths module

Namespace

Drupal\rename_admin_paths

Code

private function getImmutableConfig() : ImmutableConfig {
  if (empty($this->configImmutable)) {
    $this->configImmutable = $this->configFactory
      ->get(self::CONFIG_KEY);
  }
  return $this->configImmutable;
}