DataInterface.php 444 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Indexer\Model\Source;
  7. use Magento\Framework\Exception\NotFoundException;
  8. /**
  9. * Interface \Magento\Indexer\Model\Source\DataInterface
  10. *
  11. */
  12. interface DataInterface
  13. {
  14. /**
  15. * @param array $fieldsData
  16. * @return array
  17. * @throws NotFoundException
  18. */
  19. public function getData(array $fieldsData);
  20. }