| Current Path : /home/rtorresani/www/vendor/magento/module-re-captcha-validation/Model/ |
| 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;
}