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 
11 
16 {
20  const CACHE_ID = 'extension_attributes_config';
21 
30  public function __construct(
31  Reader $reader,
32  CacheInterface $cache,
33  $cacheId = self::CACHE_ID,
34  SerializerInterface $serializer = null
35  ) {
36  parent::__construct($reader, $cache, $cacheId, $serializer);
37  }
38 }
__construct(Reader $reader, CacheInterface $cache, $cacheId=self::CACHE_ID, SerializerInterface $serializer=null)
Definition: Config.php:30