?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/vendor/maxmind/web-service-common/src/WebService/Http/



?? Go up: /home/webdevt/prestashop17/vendor/maxmind/web-service-common/src/WebService

?? Viewing: Request.php

<?php

namespace MaxMind\WebService\Http;

/**
 * Interface Request.
 *
 * @internal
 */
interface Request
{
    /**
     * @param string $url
     * @param array  $options
     */
    public function __construct($url, $options);

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

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


??

??