You are here

interface Request in Smart IP 6.2

Same name and namespace in other branches
  1. 7.2 includes/vendor/maxmind/web-service-common/src/WebService/Http/Request.php \MaxMind\WebService\Http\Request

Interface Request @package MaxMind\WebService\Http @internal

Hierarchy

  • interface \MaxMind\WebService\Http\Request

Expanded class hierarchy of Request

All classes that implement Request

File

includes/vendor/maxmind/web-service-common/src/WebService/Http/Request.php, line 10

Namespace

MaxMind\WebService\Http
View source
interface Request {

  /**
   * @param $url
   * @param $options
   */
  public function __construct($url, $options);

  /**
   * @param $body
   * @return mixed
   */
  public function post($body);

  /**
   * @return mixed
   */
  public function get();

}

Members

Namesort descending Modifiers Type Description Overrides
Request::get public function 1
Request::post public function 1
Request::__construct public function 1