1234567891011121314151617181920212223 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Search;
- /**
- * @api
- * @since 102.0.0
- */
- interface EngineResolverInterface
- {
- /**
- * Returns Current Search Engine
- *
- * It returns string identifier of Search Engine that is currently chosen in configuration
- *
- * @return string
- * @since 102.0.0
- */
- public function getCurrentSearchEngine();
- }
|