File "Request.php"

Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php
File size: 381 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace MaxMind\WebService\Http;

/**
 * Interface Request.
 *
 * @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();
}