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 
13 class Config implements ConfigInterface
14 {
18  private $data;
19 
25  public function __construct(
26  DataInterface $data
27  ) {
28  $this->data = $data;
29  }
30 
37  public function get($queryName)
38  {
39  return $this->data->get($queryName);
40  }
41 }
__construct(DataInterface $data)
Definition: Config.php:25