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
9 
11 
12 class Config implements ConfigInterface
13 {
19  protected $_dataContainer;
20 
24  public function __construct(Data $dataContainer)
25  {
26  $this->_dataContainer = $dataContainer;
27  }
28 
35  public function getObservers($eventName)
36  {
37  return $this->_dataContainer->get($eventName, []);
38  }
39 }
__construct(Data $dataContainer)
Definition: Config.php:24