EntityInterface.php 280 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Catalog\Model;
  7. /**
  8. * Interface EntityInterface
  9. */
  10. interface EntityInterface
  11. {
  12. /**
  13. * @return string
  14. */
  15. public function getEntityId();
  16. }