12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Contact\Model\System\Config\Backend;
- use Magento\Config\Model\Config\Backend\Cache;
- /**
- * Cache cleaner backend model
- */
- class Links extends Cache implements \Magento\Framework\DataObject\IdentityInterface
- {
- /**
- * Cache tags to clean
- *
- * @var string[]
- */
- protected $_cacheTags = [\Magento\Store\Model\Store::CACHE_TAG, \Magento\Cms\Model\Block::CACHE_TAG];
- /**
- * Get identities
- *
- * @return array
- */
- public function getIdentities()
- {
- return [\Magento\Store\Model\Store::CACHE_TAG, \Magento\Cms\Model\Block::CACHE_TAG];
- }
- }
|