GetDefaultSourceSelectionAlgorithmCodeInterface.php 441 B

1234567891011121314151617181920212223
  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. * Service returns Default Source Selection Algorithm Code
  10. *
  11. * @api
  12. */
  13. interface GetDefaultSourceSelectionAlgorithmCodeInterface
  14. {
  15. /**
  16. * Get Default Algorithm code
  17. *
  18. * @return string
  19. */
  20. public function execute(): string;
  21. }