Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DdlCache.php
Go to the documentation of this file.
1 <?php
8 
11 
15 class DdlCache extends TagScope
16 {
20  const TYPE_IDENTIFIER = 'db_ddl';
21 
25  const CACHE_TAG = 'DB_DDL';
26 
32  public function __construct(FrontendPool $cacheFrontendPool)
33  {
34  parent::__construct($cacheFrontendPool->get(self::TYPE_IDENTIFIER), self::CACHE_TAG);
35  }
36 }
__construct(FrontendPool $cacheFrontendPool)
Definition: DdlCache.php:32