StockSearchResults.php 362 B

123456789101112131415
  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\Inventory\Model;
  8. use Magento\Framework\Api\SearchResults;
  9. use Magento\InventoryApi\Api\Data\StockSearchResultsInterface;
  10. class StockSearchResults extends SearchResults implements StockSearchResultsInterface
  11. {
  12. }