public ConfigFactory::clearStaticCache()
Clears the config factory static cache.
Return value
$this
Overrides ConfigFactoryInterface::clearStaticCache
File
- core/lib/Drupal/Core/Config/ConfigFactory.php, line 319
Class
- ConfigFactory
- Defines the configuration object factory.
Namespace
Drupal\Core\Config
Code
1 2 3 4 | public function clearStaticCache() { $this ->cache = array (); return $this ; } |
Please login to continue.