source: vendor/psr/http-client/src/ClientInterface.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload new project files

  • Property mode set to 100644
File size: 500 bytes
Line 
1<?php
2
3namespace Psr\Http\Client;
4
5use Psr\Http\Message\RequestInterface;
6use Psr\Http\Message\ResponseInterface;
7
8interface ClientInterface
9{
10 /**
11 * Sends a PSR-7 request and returns a PSR-7 response.
12 *
13 * @param RequestInterface $request
14 *
15 * @return ResponseInterface
16 *
17 * @throws \Psr\Http\Client\ClientExceptionInterface If an error happens while processing the request.
18 */
19 public function sendRequest(RequestInterface $request): ResponseInterface;
20}
Note: See TracBrowser for help on using the repository browser.