# authorizer/3.13.0/vendor/psr/http-client/src/ClientInterface.php

Authorizer, version 3.13.0. 21 lines.

- Page: https://pluginprobe.com/plugins/authorizer/3.13.0/code/vendor/psr/http-client/src/ClientInterface.php
- Raw: https://pluginprobe.com/plugins/authorizer/3.13.0/raw/vendor/psr/http-client/src/ClientInterface.php
- Modified: 2021-02-04T21:50:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/authorizer/3.13.0/code/vendor/psr/http-client/src/ClientInterface.php#L10-L20`.

```php
<?php

namespace Psr\Http\Client;

use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;

interface ClientInterface
{
    /**
     * Sends a PSR-7 request and returns a PSR-7 response.
     *
     * @param RequestInterface $request
     *
     * @return ResponseInterface
     *
     * @throws \Psr\Http\Client\ClientExceptionInterface If an error happens while processing the request.
     */
    public function sendRequest(RequestInterface $request): ResponseInterface;
}

```
