You are here

public function UnsavedIndexConfiguration::getCacheTags in Search API 8

The cache tags associated with this object.

When this object is modified, these cache tags will be invalidated.

Return value

string[] A set of cache tags.

Overrides CacheableDependencyInterface::getCacheTags

File

src/UnsavedIndexConfiguration.php, line 1036

Class

UnsavedIndexConfiguration
Represents a configuration of an index that was not yet permanently saved.

Namespace

Drupal\search_api

Code

public function getCacheTags() {
  return $this->entity
    ->getCacheTags();
}