You are here

public function DeveloperCompaniesCache::invalidate in Apigee Edge 8

Invalidates cache entries by tag.

Parameters

array $tags: Array of cache tags.

Overrides DeveloperCompaniesCacheInterface::invalidate

File

src/Entity/DeveloperCompaniesCache.php, line 87

Class

DeveloperCompaniesCache
Default non-persistent developer company membership cache implementation.

Namespace

Drupal\apigee_edge\Entity

Code

public function invalidate(array $tags) : void {
  $this->backend
    ->invalidateTags($tags);
}