ReadInterface.php 412 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Model\Operation;
  7. /**
  8. * Interface ReadInterface
  9. */
  10. interface ReadInterface
  11. {
  12. /**
  13. * @param string $entityType
  14. * @param object $entity
  15. * @param string $identifier
  16. * @return object
  17. */
  18. public function execute($entityType, $entity, $identifier);
  19. }