PluginProbe ʕ •ᴥ•ʔ
SEOPress – AI SEO Plugin & On-site SEO / 9.3.0.3
SEOPress – AI SEO Plugin & On-site SEO v9.3.0.3
10.0 9.9.2 9.9.1 9.9 9.8.5 9.8.4 9.8.3 9.8.2 9.8.1 trunk 7.0 7.0.1 7.0.2 7.0.3 7.1 7.1.1 7.1.2 7.2 7.3 7.3.1 7.3.2 7.4 7.5 7.5.0.1 7.5.0.2 7.5.0.3 7.5.1 7.5.2 7.5.2.1 7.6 7.6.1 7.7 7.7.1 7.7.2 7.8 7.9 7.9.1 7.9.2 8.0 8.0.1 8.1 8.1.1 8.2 8.3 8.3.1 8.4 8.4.1 8.5 8.5.0.2 8.5.1 8.5.1.1 8.6 8.6.1 8.7 8.7.0.1 8.7.0.2 8.8 8.8.1 8.9 8.9.0.1 8.9.0.2 9.0 9.0.1 9.1 9.2 9.3 9.3.0.1 9.3.0.2 9.3.0.3 9.3.0.4 9.4 9.4.1 9.5 9.6 9.7 9.7.1 9.7.2 9.7.3 9.7.4 9.8
wp-seopress / vendor / psr / http-client / src / ClientInterface.php
wp-seopress / vendor / psr / http-client / src Last commit date
ClientExceptionInterface.php 7 months ago ClientInterface.php 7 months ago NetworkExceptionInterface.php 7 months ago RequestExceptionInterface.php 7 months ago
ClientInterface.php
21 lines
1 <?php
2
3 namespace Psr\Http\Client;
4
5 use Psr\Http\Message\RequestInterface;
6 use Psr\Http\Message\ResponseInterface;
7
8 interface 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 }
21