Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ElementMapper.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
9 
13 
18 {
22  private $formatter;
23 
27  public function __construct(FormatterInterface $formatter)
28  {
29  $this->formatter = $formatter;
30  }
31 
39  public function buildSchemaArray(ConfigElementInterface $configElement, OutputTypeInterface $outputType) : array
40  {
41  return $this->formatter->format($configElement, $outputType);
42  }
43 }
buildSchemaArray(ConfigElementInterface $configElement, OutputTypeInterface $outputType)