ResponseInterface.php 404 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Search;
  7. /**
  8. * Search Request
  9. */
  10. interface ResponseInterface extends \IteratorAggregate, \Countable
  11. {
  12. /**
  13. * Return Aggregation Collection
  14. *
  15. * @return \Magento\Framework\Api\Search\AggregationInterface
  16. */
  17. public function getAggregations();
  18. }