Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-tax/Model/Config/Price/
Upload File :
Current File : //home/rtorresani/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;
    }
}