Request.php in Smart IP 6.2
Same filename and directory in other branches
Namespace
MaxMind\WebService\HttpFile
includes/vendor/maxmind/web-service-common/src/WebService/Http/Request.phpView 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();
}