ExtensionInterface.php 451 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\EntityManager\Operation;
  7. /**
  8. * Interface ExtensionInterface
  9. */
  10. interface ExtensionInterface
  11. {
  12. /**
  13. * Perform action on relation/extension attribute
  14. *
  15. * @param object $entity
  16. * @param array $arguments
  17. * @return object|bool
  18. */
  19. public function execute($entity, $arguments = []);
  20. }