Your IP : 216.73.216.95


Current Path : /var/test/www/storage2/vendor/cardinity/cardinity-sdk-php/src/Http/
Upload File :
Current File : /var/test/www/storage2/vendor/cardinity/cardinity-sdk-php/src/Http/ClientInterface.php

<?php
namespace Cardinity\Http;

use Cardinity\Method\MethodInterface;

interface ClientInterface
{
    /**
     * Send HTTP request
     * @param MethodInterface $method
     * @param string $requestMethod POST|GET|PATCH
     * @param string $url http URL
     * @param array $options query options. Query params goes under 'query' key.
     * @return array
     */
    public function sendRequest(MethodInterface $method, $requestMethod, $url, array $options = []);
}