TestRepositoryInterface.php 522 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\TestModuleJoinDirectives\Api;
  7. /**
  8. * Interface TestRepositoryInterface
  9. */
  10. interface TestRepositoryInterface
  11. {
  12. /**
  13. * Get list of quotes
  14. *
  15. * @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
  16. * @return \Magento\Quote\Api\Data\CartSearchResultsInterface
  17. */
  18. public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria);
  19. }