ClientFactoryInterface.php 406 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\AdvancedSearch\Model\Client;
  7. /**
  8. * @api
  9. * @since 100.1.0
  10. */
  11. interface ClientFactoryInterface
  12. {
  13. /**
  14. * Return search client
  15. *
  16. * @param array $options
  17. * @return ClientInterface
  18. * @since 100.1.0
  19. */
  20. public function create(array $options = []);
  21. }