| Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/module-tax/Model/Config/Price/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/magento/module-tax/Model/Config/Price/IncludePrice.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Tax\Model\Config\Price;
class IncludePrice extends \Magento\Framework\App\Config\Value
{
/**
* @return $this
*/
public function afterSave()
{
$result = parent::afterSave();
$this->_cacheManager->clean(['checkout_quote']);
return $result;
}
}