RequestMethod.php in hCaptcha 7
Same filename and directory in other branches
Namespace
HCaptchaFile
src/HCaptcha/RequestMethod.phpView source
<?php
namespace 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 |