Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DataProviderContainer.php
Go to the documentation of this file.
1 <?php
7 
17 {
21  private $dataProvider;
22 
26  public function __construct(array $dataProviders)
27  {
28  $this->dataProvider = $dataProviders;
29  }
30 
37  public function get($indexName)
38  {
39  return $this->dataProvider[$indexName];
40  }
41 }