DIR:/home/htlwork.com/www/dev/pricelow/vendor/magento/module-search/Setup/ |
Current File : /home/htlwork.com/www/dev/pricelow/vendor/magento/module-search/Setup/InstallConfigInterface.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Search\Setup; /** * Configure search engine from installation input * * @api */ interface InstallConfigInterface { /** * Configure search engine based in input options * * @param array $inputOptions */ public function configure(array $inputOptions); } |