Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CacheKey.php
Go to the documentation of this file.
1 <?php
7 
11 class CacheKey implements \Magento\Framework\View\Layout\LayoutCacheKeyInterface
12 {
18  private $cacheKeys = [];
19 
26  public function addCacheKeys($cacheKeys)
27  {
28  if (!is_array($cacheKeys)) {
29  $cacheKeys = [$cacheKeys];
30  }
31  $this->cacheKeys = array_merge($this->cacheKeys, $cacheKeys);
32  }
33 
39  public function getCacheKeys()
40  {
41  return $this->cacheKeys;
42  }
43 }