AttributeInterface.php 438 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 AttributeInterface
  9. */
  10. interface AttributeInterface
  11. {
  12. /**
  13. * @param string $entityType
  14. * @param array $entityData
  15. * @param array $arguments
  16. * @return array
  17. */
  18. public function execute($entityType, $entityData, $arguments = []);
  19. }