Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Data.php
Go to the documentation of this file.
1 <?php
7 
9 
13 class Data extends \Magento\Framework\Config\Data\Scoped
14 {
20  protected $_scopePriorityScheme = ['global'];
21 
31  public function __construct(
32  \Magento\Framework\Cache\Config\Reader $reader,
33  \Magento\Framework\Config\ScopeInterface $configScope,
34  \Magento\Framework\Config\CacheInterface $cache,
35  $cacheId,
36  SerializerInterface $serializer = null
37  ) {
38  parent::__construct($reader, $configScope, $cache, $cacheId, $serializer);
39  }
40 }
__construct(\Magento\Framework\Cache\Config\Reader $reader, \Magento\Framework\Config\ScopeInterface $configScope, \Magento\Framework\Config\CacheInterface $cache, $cacheId, SerializerInterface $serializer=null)
Definition: Data.php:31