From 0d4d14e53fa5bc3ce92967105385ba57381b55c4 Mon Sep 17 00:00:00 2001 From: inc2734 Date: Sun, 10 Mar 2024 16:19:36 +0900 Subject: [PATCH] Some fixes --- App/Service/ReCaptcha/ReCaptcha.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/App/Service/ReCaptcha/ReCaptcha.php b/App/Service/ReCaptcha/ReCaptcha.php index deb371a..a5ea862 100644 --- a/App/Service/ReCaptcha/ReCaptcha.php +++ b/App/Service/ReCaptcha/ReCaptcha.php @@ -12,6 +12,20 @@ class ReCaptcha { + /** + * Site key. + * + * @var string + */ + protected $site_key = null; + + /** + * Secret key. + * + * @var string + */ + protected $secret_key = null; + /** * Constructor. */