Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
TypeIntegration.php
Go to the documentation of this file.
1 <?php
8 
13 {
17  const TYPE_IDENTIFIER = 'config_integration_api';
18 
22  const CACHE_TAG = 'INTEGRATION_API_CONFIG';
23 
27  public function __construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool)
28  {
29  parent::__construct($cacheFrontendPool->get(self::TYPE_IDENTIFIER), self::CACHE_TAG);
30  }
31 }
__construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool)