Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Cache.php
Go to the documentation of this file.
1 <?php
12 
17 class Cache extends \Magento\Framework\App\Config\Value
18 {
24  protected $_cacheTags = [];
25 
31  public function afterSave()
32  {
33  if ($this->isValueChanged()) {
34  $this->_cacheManager->clean($this->_cacheTags);
35  }
36  return $this;
37  }
38 }