Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
EntityMetadata.php
Go to the documentation of this file.
1 <?php
8 
15 {
19  private $entityId;
20 
25  public function __construct($entityId)
26  {
27  $this->entityId = $entityId;
28  }
29 
36  public function getEntityId()
37  {
38  return $this->entityId;
39  }
40 }