Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DataProfileSchemaParser.php
Go to the documentation of this file.
1 <?php
8 
10 
15 {
21  private $dataProfiles;
22 
27  public function __construct(DataInterface $dataProfiles)
28  {
29  $this->dataProfiles = $dataProfiles;
30  }
31 
37  public function readDataProfiles()
38  {
39  return $this->dataProfiles->get();
40  }
41 }