RequestMethod.php in hCaptcha 8
Same filename and directory in other branches
Namespace
Drupal\hcaptcha\HCaptchaFile
src/HCaptcha/RequestMethod.phpView source
<?php
namespace Drupal\hcaptcha\HCaptcha;
interface RequestMethod {
/**
* Submit the request with the specified parameters.
*
* @param string $url
* @param array $params Request parameters
*
* @return \stdClass Body of the hCaptcha response
*/
public function submit($url, array $params);
}
Interfaces
Name | Description |
---|---|
RequestMethod |