public function ArrayObject::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 CacheableDependencyInterface::getCacheTags
File
- themes/
contrib/ bootstrap/ src/ Utility/ ArrayObject.php, line 228 - Contains \Drupal\bootstrap\Utility\ArrayObject.
Class
- ArrayObject
- Custom ArrayObject implementation.
Namespace
Drupal\bootstrap\UtilityCode
public function getCacheTags() {
return BubbleableMetadata::createFromRenderArray($this->array)
->getCacheTags();
}