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 / NetworkExceptionInterface.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
NetworkExceptionInterface.php
25 lines
1 <?php
2
3 namespace Psr\Http\Client;
4
5 use Psr\Http\Message\RequestInterface;
6
7 /**
8 * Thrown when the request cannot be completed because of network issues.
9 *
10 * There is no response object as this exception is thrown when no response has been received.
11 *
12 * Example: the target host name can not be resolved or the connection failed.
13 */
14 interface NetworkExceptionInterface extends ClientExceptionInterface
15 {
16 /**
17 * Returns the request.
18 *
19 * The request object MAY be a different object from the one passed to ClientInterface::sendRequest()
20 *
21 * @return RequestInterface
22 */
23 public function getRequest(): RequestInterface;
24 }
25