SourceSearchResults.php 396 B

123456789101112131415161718
  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\SourceSearchResultsInterface;
  10. /**
  11. * SourceSearchResults
  12. */
  13. class SourceSearchResults extends SearchResults implements SourceSearchResultsInterface
  14. {
  15. }