DeleteSourceItemsConfigurationInterface.php 549 B

123456789101112131415161718192021222324
  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. * Delete the source item configuration
  10. *
  11. * @api
  12. */
  13. interface DeleteSourceItemsConfigurationInterface
  14. {
  15. /**
  16. * Delete multiple source items configuration for low quantity
  17. *
  18. * @param \Magento\InventoryApi\Api\Data\SourceItemInterface[] $sourceItems
  19. * @return void
  20. */
  21. public function execute(array $sourceItems): void;
  22. }