DefaultSourceProviderInterface.php 391 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\InventoryCatalogApi\Api;
  8. /**
  9. * Service returns Default Source Id
  10. *
  11. * @api
  12. */
  13. interface DefaultSourceProviderInterface
  14. {
  15. /**
  16. * Get Default Source code
  17. *
  18. * @return string
  19. */
  20. public function getCode(): string;
  21. }