Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-rss/Model/System/Config/Backend/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-rss/Model/System/Config/Backend/Links.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Rss\Model\System\Config\Backend;

/**
 * Cache cleaner backend model
 *
 */
class Links extends \Magento\Framework\App\Config\Value
{
    /**
     * Invalidate cache type, when value was changed
     *
     * @return $this
     */
    public function afterSave()
    {
        if ($this->isValueChanged()) {
            $this->cacheTypeList->invalidate(\Magento\Framework\View\Element\AbstractBlock::CACHE_GROUP);
        }
        return parent::afterSave();
    }
}