ClientInterface.php 372 B

123456789101112131415161718192021
  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 ClientInterface
  12. {
  13. /**
  14. * Validate connection params for search engine
  15. *
  16. * @return bool
  17. * @since 100.1.0
  18. */
  19. public function testConnection();
  20. }