You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PHP Deprecated: ReCaptcha\ReCaptcha::__construct(): Implicitly marking parameter $requestMethod as nullable is deprecated, the explicit nullable type must be used instead in includes/classes/vendors/Google/recaptcha/src/ReCaptcha/ReCaptcha.php on line 139.
* @param RequestMethod $requestMethod method used to send the request. Defaults to POST.
* @throws \RuntimeException if $secret is invalid
*/
public function __construct($secret, RequestMethod $requestMethod = null)
//torvista: fix for php8.4
* @param RequestMethod|null $requestMethod method used to send the request. Defaults to POST.
* @throws \RuntimeException if $secret is invalid
*/
//torvista: fix for php8.4
public function __construct($secret, ?RequestMethod $requestMethod = null)
The text was updated successfully, but these errors were encountered:
Ongoing
google/recaptcha#565
Just change
The text was updated successfully, but these errors were encountered: