You are here

public function ConfigEntityStorageDecorator::resetCache in Devel 8

Same name and namespace in other branches
  1. 8.3 webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::resetCache()
  2. 8.2 webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::resetCache()
  3. 4.x webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::resetCache()

Resets the internal, static entity cache.

Parameters

$ids: (optional) If specified, the cache is reset for the entities with the given ids only.

Overrides EntityStorageInterface::resetCache

File

webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php, line 32

Class

ConfigEntityStorageDecorator
Class ConfigEntityStorageDecorator

Namespace

Drupal\webprofiler\Entity\Decorators\Config

Code

public function resetCache(array $ids = NULL) {
  $this
    ->getOriginalObject()
    ->resetCache($ids);
}