QueryFactoryInterface.php 279 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Search\Model;
  7. /**
  8. * @deprecated 100.2.0
  9. */
  10. interface QueryFactoryInterface
  11. {
  12. /**
  13. * @return QueryInterface
  14. */
  15. public function get();
  16. }