123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\EntityManager;
- /**
- * Interface EntityMetadataInterface
- */
- interface EntityMetadataInterface
- {
- /**
- * @return string
- */
- public function getIdentifierField();
- /**
- * @return string
- */
- public function getLinkField();
- /**
- * @return string
- */
- public function getEntityTable();
- /**
- * @return string
- */
- public function getEntityConnectionName();
- /**
- * @return null|string
- */
- public function generateIdentifier();
- /**
- * @return string[]
- */
- public function getEntityContext();
- /**
- * @return null|string
- */
- public function getEavEntityType();
- /**
- * @return \Magento\Framework\DB\Adapter\AdapterInterface
- * @deprecated 100.1.0
- */
- public function getEntityConnection();
- }
|