entity_meta_relation-8.x-1.0-beta8/src/EntityMetaWrapperInterface.php
src/EntityMetaWrapperInterface.php
<?php
declare(strict_types=1);
namespace Drupal\emr;
use Drupal\emr\Entity\EntityMetaInterface;
/**
* Represents entity meta wrappers.
*/
interface EntityMetaWrapperInterface {
/**
* Returns the entity meta.
*
* @return \Drupal\emr\Entity\EntityMetaInterface
* The entity meta.
*/
public function getEntityMeta(): EntityMetaInterface;
}
