function ConfigEntityStorage::resetCache
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Config/Entity/ConfigEntityStorage.php \Drupal\Core\Config\Entity\ConfigEntityStorage::resetCache()
File
-
core/
lib/ Drupal/ Core/ Config/ Entity/ ConfigEntityStorage.php, line 316
Class
- ConfigEntityStorage
- Defines the storage class for configuration entities.
Namespace
Drupal\Core\Config\EntityCode
public function resetCache(?array $ids = NULL) {
if ($this->entityType
->isStaticallyCacheable()) {
// Always invalidate through the cache tag, since config entities may
// be cached under different cache keys depending on the override flag.
$this->memoryCache
->invalidateTags([
$this->memoryCacheTag,
]);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.