Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-search/Model/SearchEngine/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-search/Model/SearchEngine/ValidatorInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Search\Model\SearchEngine;

/**
 * Validate search engine configuration
 *
 * @api
 */
interface ValidatorInterface
{
    /**
     * Validate search engine
     *
     * @return string[] array of errors, empty array if validation passed
     */
    public function validate(): array;
}