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