Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CompiledConfig.php
Go to the documentation of this file.
1 <?php
7 
11 
12 class CompiledConfig extends TagScope implements CacheInterface
13 {
17  const TYPE_IDENTIFIER = 'compiled_config';
18 
22  const CACHE_TAG = 'COMPILED_CONFIG';
23 
27  public function __construct(FrontendPool $cacheFrontendPool)
28  {
29  parent::__construct($cacheFrontendPool->get(self::TYPE_IDENTIFIER), self::CACHE_TAG);
30  }
31 }