Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/magento/module-captcha/Api/
Upload File :
Current File : /var/www/html/vendor/magento/module-captcha/Api/CaptchaConfigPostProcessorInterface.php

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

namespace Magento\Captcha\Api;

/**
 * Interface contains methods for post processing and modifies client-side CAPTCHA config
 */
interface CaptchaConfigPostProcessorInterface
{
    /**
     * Filters the data object by a filter list
     *
     * @param array $config
     * @return array
     */
    public function process(array $config): array;
}