Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-re-captcha-validation/Model/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-re-captcha-validation/Model/ReCaptcha.php

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

namespace Magento\ReCaptchaValidation\Model;

use ReCaptcha\ReCaptcha as GoogleReCaptcha;

/**
 * Wrapper Class for Google Recaptcha
 * Used to fix dynamic property deprecation error
 */
class ReCaptcha extends GoogleReCaptcha
{

    /**
     * @var float
     */
    protected float $threshold = 0.0;
}