Your IP : 216.73.216.89


Current Path : /home/eolienneia/www/templates/yootheme/vendor/yootheme/http-server/src/
Upload File :
Current File : /home/eolienneia/www/templates/yootheme/vendor/yootheme/http-server/src/HttpClientInterface.php

<?php

namespace YOOtheme;

interface HttpClientInterface
{
    /**
     * Execute a GET HTTP request.
     *
     * @param string $url
     * @param array  $options
     *
     * @return mixed
     */
    public function get($url, $options = []);

    /**
     * Execute a POST HTTP request.
     *
     * @param string $url
     * @param string $data
     * @param array  $options
     *
     * @return mixed
     */
    public function post($url, $data = null, $options = []);

    /**
     * Execute a PUT HTTP request.
     *
     * @param string $url
     * @param string $data
     * @param array  $options
     *
     * @return mixed
     */
    public function put($url, $data = null, $options = []);

    /**
     * Execute a DELETE HTTP request.
     *
     * @param string $url
     * @param array  $options
     *
     * @return mixed
     */
    public function delete($url, $options = []);
}