Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Config.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
18  const CACHE_ID = 'request_declaration';
19 
28  public function __construct(
29  \Magento\Framework\Search\Request\Config\FilesystemReader $reader,
30  \Magento\Framework\Config\CacheInterface $cache,
31  $cacheId = self::CACHE_ID,
32  SerializerInterface $serializer = null
33  ) {
34  parent::__construct($reader, $cache, $cacheId, $serializer);
35  }
36 }
__construct(\Magento\Framework\Search\Request\Config\FilesystemReader $reader, \Magento\Framework\Config\CacheInterface $cache, $cacheId=self::CACHE_ID, SerializerInterface $serializer=null)
Definition: Config.php:28