You are here

Request.php in Smart IP 6.2

File

includes/vendor/maxmind/web-service-common/src/WebService/Http/Request.php
View source
<?php

namespace MaxMind\WebService\Http;


/**
 * Interface Request
 * @package MaxMind\WebService\Http
 * @internal
 */
interface Request {

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

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

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

}

Interfaces

Namesort descending Description
Request Interface Request @package MaxMind\WebService\Http @internal