File "HttpClientInterface.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/apimatic/core-interfaces/src/Http/HttpClientInterface.php
File size: 473 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace WPForms\Vendor\CoreInterfaces\Http;
use WPForms\Vendor\CoreInterfaces\Core\Request\RequestInterface;
use WPForms\Vendor\CoreInterfaces\Core\Response\ResponseInterface;
interface HttpClientInterface
{
/**
* Sends request and receive response from server.
*
* @param RequestInterface $request Request to be sent
*
* @return ResponseInterface
*/
public function execute(RequestInterface $request) : ResponseInterface;
}