SourceItemConfigurationsSaveInterface.php 639 B

12345678910111213141516171819202122232425
  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\InventoryLowQuantityNotificationApi\Api;
  8. /**
  9. * Save the source item configuration
  10. *
  11. * Used fully qualified namespaces in annotations for proper work of WebApi request parser
  12. *
  13. * @api
  14. */
  15. interface SourceItemConfigurationsSaveInterface
  16. {
  17. /**
  18. * @param \Magento\InventoryLowQuantityNotificationApi\Api\Data\SourceItemConfigurationInterface[]
  19. * $sourceItemConfigurations
  20. * @return void
  21. */
  22. public function execute(array $sourceItemConfigurations): void;
  23. }