public function ConfigFactory::clearStaticCache

Clears the config factory static cache.

Return value

\Drupal\Core\Config\ConfigFactory The config factory object.

File

drupal/core/lib/Drupal/Core/Config/ConfigFactory.php, line 217
Definition of Drupal\Core\Config\ConfigFactory.

Class

ConfigFactory
Defines the configuration object factory.

Namespace

Drupal\Core\Config

Code

public function clearStaticCache() {
  $this->cache = array();
  return $this;
}