function ConfigEntityStorage::resetCache

Overrides EntityStorageBase::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\Entity

Code

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.