EsConfigInterface.php 429 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Elasticsearch\Model\Adapter\Index\Config;
  7. /**
  8. * @api
  9. * @since 100.1.0
  10. */
  11. interface EsConfigInterface
  12. {
  13. /**
  14. * @return array
  15. * @since 100.1.0
  16. */
  17. public function getStemmerInfo();
  18. /**
  19. * @return array
  20. * @since 100.1.0
  21. */
  22. public function getStopwordsInfo();
  23. }