IncludePrice.php 417 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Tax\Model\Config\Price;
  7. class IncludePrice extends \Magento\Framework\App\Config\Value
  8. {
  9. /**
  10. * @return $this
  11. */
  12. public function afterSave()
  13. {
  14. $result = parent::afterSave();
  15. $this->_cacheManager->clean(['checkout_quote']);
  16. return $result;
  17. }
  18. }