Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
save_bvnghean.vn
/
wp-content
/
plugins
/
wordfence
/
vendor
/
maxmind
/
web-service-common
/
src
/
WebService
/
Http
:
Request.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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(); }