Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
system
/
storage
/
vendor
/
cardinity
/
cardinity-sdk-php
/
src
/
Http
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 = []); }