| Current Path : /home/rtorresani/www/vendor/magento/module-integration/Model/Cache/ |
| Current File : //home/rtorresani/www/vendor/magento/module-integration/Model/Cache/TypeIntegration.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Integration\Model\Cache;
/**
* System / Cache Management / Cache type "Integration Api Configuration"
*/
class TypeIntegration extends \Magento\Framework\Cache\Frontend\Decorator\TagScope
{
/**
* Cache type code unique among all cache types
*/
const TYPE_IDENTIFIER = 'config_integration_api';
/**
* Cache tag used to distinguish the cache type from all other cache
*/
const CACHE_TAG = 'INTEGRATION_API_CONFIG';
/**
* @param \Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool
*/
public function __construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool)
{
parent::__construct($cacheFrontendPool->get(self::TYPE_IDENTIFIER), self::CACHE_TAG);
}
}