summaryrefslogtreecommitdiff
path: root/includes/recaptcha/ReCaptcha/RequestParameters.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/recaptcha/ReCaptcha/RequestParameters.php')
-rw-r--r--includes/recaptcha/ReCaptcha/RequestParameters.php120
1 files changed, 60 insertions, 60 deletions
diff --git a/includes/recaptcha/ReCaptcha/RequestParameters.php b/includes/recaptcha/ReCaptcha/RequestParameters.php
index e9ba453..2d4eeb3 100644
--- a/includes/recaptcha/ReCaptcha/RequestParameters.php
+++ b/includes/recaptcha/ReCaptcha/RequestParameters.php
@@ -39,73 +39,73 @@ namespace ReCaptcha;
*/
class RequestParameters
{
- /**
- * The shared key between your site and reCAPTCHA.
- * @var string
- */
- private $secret;
+ /**
+ * The shared key between your site and reCAPTCHA.
+ * @var string
+ */
+ private $secret;
- /**
- * The user response token provided by reCAPTCHA, verifying the user on your site.
- * @var string
- */
- private $response;
+ /**
+ * The user response token provided by reCAPTCHA, verifying the user on your site.
+ * @var string
+ */
+ private $response;
- /**
- * Remote user's IP address.
- * @var string
- */
- private $remoteIp;
+ /**
+ * Remote user's IP address.
+ * @var string
+ */
+ private $remoteIp;
- /**
- * Client version.
- * @var string
- */
- private $version;
+ /**
+ * Client version.
+ * @var string
+ */
+ private $version;
- /**
- * Initialise parameters.
- *
- * @param string $secret Site secret.
- * @param string $response Value from g-captcha-response form field.
- * @param string $remoteIp User's IP address.
- * @param string $version Version of this client library.
- */
- public function __construct($secret, $response, $remoteIp = null, $version = null)
- {
- $this->secret = $secret;
- $this->response = $response;
- $this->remoteIp = $remoteIp;
- $this->version = $version;
- }
+ /**
+ * Initialise parameters.
+ *
+ * @param string $secret Site secret.
+ * @param string $response Value from g-captcha-response form field.
+ * @param string $remoteIp User's IP address.
+ * @param string $version Version of this client library.
+ */
+ public function __construct($secret, $response, $remoteIp = null, $version = null)
+ {
+ $this->secret = $secret;
+ $this->response = $response;
+ $this->remoteIp = $remoteIp;
+ $this->version = $version;
+ }
- /**
- * Array representation.
- *
- * @return array Array formatted parameters.
- */
- public function toArray()
- {
- $params = array('secret' => $this->secret, 'response' => $this->response);
+ /**
+ * Array representation.
+ *
+ * @return array Array formatted parameters.
+ */
+ public function toArray()
+ {
+ $params = ['secret' => $this->secret, 'response' => $this->response];
- if (!is_null($this->remoteIp)) {
- $params['remoteip'] = $this->remoteIp;
- }
+ if (!is_null($this->remoteIp)) {
+ $params['remoteip'] = $this->remoteIp;
+ }
- if (!is_null($this->version)) {
- $params['version'] = $this->version;
- }
+ if (!is_null($this->version)) {
+ $params['version'] = $this->version;
+ }
- return $params;
- }
+ return $params;
+ }
- /**
- * Query string representation for HTTP request.
- *
- * @return string Query string formatted parameters.
- */
- public function toQueryString()
- {
- return http_build_query($this->toArray(), '', '&');
- }
+ /**
+ * Query string representation for HTTP request.
+ *
+ * @return string Query string formatted parameters.
+ */
+ public function toQueryString()
+ {
+ return http_build_query($this->toArray(), '', '&');
+ }
}