ProcessEntityRelationInterface.php 403 B

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