1<?php
2
3namespace MaxMind\WebService\Http;
4
5/**
6 * Interface Request.
7 *
8 * @internal
9 */
10interface Request
11{
12    /**
13     * @param $url
14     * @param $options
15     */
16    public function __construct($url, $options);
17
18    /**
19     * @param $body
20     *
21     * @return mixed
22     */
23    public function post($body);
24
25    /**
26     * @return mixed
27     */
28    public function get();
29}
30