SearchInterface.php 343 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Search\Api;
  7. use Magento\Framework\Api\Search\SearchInterface as FrameworkSearchInterface;
  8. /**
  9. * Search API for all requests
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface SearchInterface extends FrameworkSearchInterface
  14. {
  15. }