cacheContexts = $cacheability->getCacheContexts(); $this->cacheTags = $cacheability->getCacheTags(); $this->cacheMaxAge = $cacheability->getCacheMaxAge(); return $this; } /** * {@inheritdoc} */ public function getCacheTags() { return $this->cacheTags; } /** * {@inheritdoc} */ public function getCacheContexts() { return $this->cacheContexts; } /** * {@inheritdoc} */ public function getCacheMaxAge() { return $this->cacheMaxAge; } }