function ConfigFactory::reset

Same name in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/ConfigFactory.php \Drupal\Core\Config\ConfigFactory::reset()
  2. 10 core/lib/Drupal/Core/Config/ConfigFactory.php \Drupal\Core\Config\ConfigFactory::reset()
  3. 11.x core/lib/Drupal/Core/Config/ConfigFactory.php \Drupal\Core\Config\ConfigFactory::reset()

Overrides ConfigFactoryInterface::reset

File

core/lib/Drupal/Core/Config/ConfigFactory.php, line 231

Class

ConfigFactory
Defines the configuration object factory.

Namespace

Drupal\Core\Config

Code

public function reset($name = NULL) {
    if ($name) {
        // Clear all cached configuration for this name.
        foreach ($this->getConfigCacheKeys($name) as $cache_key) {
            unset($this->cache[$cache_key]);
        }
    }
    else {
        $this->cache = [];
    }
    // Clear the static list cache if supported by the storage.
    if ($this->storage instanceof StorageCacheInterface) {
        $this->storage
            ->resetListCache();
    }
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.