/usr/share/php/ReCaptcha
NameSizeModeActions
RequestMethod/-0755rm
autoload.php11380644editdlrm
ReCaptcha.php86460644editdlrm
RequestMethod.php20690644editdlrm
RequestParameters.php34980644editdlrm
Response.php61200644editdlrm
Edit: /usr/share/php/ReCaptcha/RequestParameters.php (3498B)
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); if (!is_null($this->remoteIp)) { $params['remoteip'] = $this->remoteIp; } if (!is_null($this->version)) { $params['version'] = $this->version; } return $params; } /** * Query string representation for HTTP request. * * @return string Query string formatted parameters. */ public function toQueryString() { return http_build_query($this->toArray(), '', '&'); } }