You are here

RequestMethod.php in hCaptcha 8

Same filename and directory in other branches
  1. 7 src/HCaptcha/RequestMethod.php

File

src/HCaptcha/RequestMethod.php
View 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

Namesort descending Description
RequestMethod