Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
IncludePrice.php
Go to the documentation of this file.
1 <?php
7 
8 class IncludePrice extends \Magento\Framework\App\Config\Value
9 {
13  public function afterSave()
14  {
15  $result = parent::afterSave();
16  $this->_cacheManager->clean(['checkout_quote']);
17 
18  return $result;
19  }
20 }