QueryInterface.php 617 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Elasticsearch\SearchAdapter\Query\Builder;
  7. use Magento\Framework\Search\Request\QueryInterface as RequestQueryInterface;
  8. /**
  9. * @api
  10. * @since 100.1.0
  11. */
  12. interface QueryInterface
  13. {
  14. /**
  15. * @param array $selectQuery
  16. * @param RequestQueryInterface $requestQuery
  17. * @param string $conditionType
  18. * @return array
  19. * @since 100.1.0
  20. */
  21. public function build(
  22. array $selectQuery,
  23. RequestQueryInterface $requestQuery,
  24. $conditionType
  25. );
  26. }