ReportingInterface.php 395 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Api\Search;
  7. /**
  8. * Interface ReportingInterface
  9. */
  10. interface ReportingInterface
  11. {
  12. /**
  13. * @param SearchCriteriaInterface $searchCriteria
  14. * @return SearchResultInterface
  15. */
  16. public function search(SearchCriteriaInterface $searchCriteria);
  17. }