GetSourceSelectionAlgorithmListInterface.php 492 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\InventorySourceSelectionApi\Api;
  8. /**
  9. * Returns the list of Data Interfaces which represent registered SSA in the system
  10. *
  11. * @api
  12. */
  13. interface GetSourceSelectionAlgorithmListInterface
  14. {
  15. /**
  16. * @return \Magento\InventorySourceSelectionApi\Api\Data\SourceSelectionAlgorithmInterface[]
  17. */
  18. public function execute(): array;
  19. }