You are here

public function ThemeSettings::getCacheTags in Express 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 ConfigBase::getCacheTags

File

themes/contrib/bootstrap/src/ThemeSettings.php, line 85
Contains \Drupal\bootstrap\ThemeSettings.

Class

ThemeSettings
Provides a configuration API wrapper for runtime merged theme settings.

Namespace

Drupal\bootstrap

Code

public function getCacheTags() {
  return [
    'rendered',
  ];
}