GetStockItemData.php 468 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\InventorySales\Model\ResourceModel;
  8. use Magento\InventorySalesApi\Model\GetStockItemDataInterface;
  9. /**
  10. * @inheritdoc
  11. */
  12. class GetStockItemData implements GetStockItemDataInterface
  13. {
  14. /**
  15. * @inheritdoc
  16. */
  17. public function execute(string $sku, int $stockId): ?array
  18. {
  19. return null;
  20. }
  21. }