Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Public Member Functions
Config Class Reference
Inheritance diagram for Config:
ConfigInterface

Public Member Functions

 __construct (DataInterface $data)
 
 get ($queryName)
 

Detailed Description

Config of ReportXml

Definition at line 13 of file Config.php.

Constructor & Destructor Documentation

◆ __construct()

__construct ( DataInterface  $data)

Config constructor.

Parameters
DataInterface$data

Definition at line 25 of file Config.php.

27  {
28  $this->data = $data;
29  }

Member Function Documentation

◆ get()

get (   $queryName)

Returns config value by name

Parameters
string$queryName
Returns
array

Implements ConfigInterface.

Definition at line 37 of file Config.php.

38  {
39  return $this->data->get($queryName);
40  }

The documentation for this class was generated from the following file: