Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wordpres.../vendor_p.../guzzleht.../guzzle/src
File: ClientInterface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace YoastSEO_Vendor\GuzzleHttp;
[2] Fix | Delete
[3] Fix | Delete
use YoastSEO_Vendor\GuzzleHttp\Exception\GuzzleException;
[4] Fix | Delete
use YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface;
[5] Fix | Delete
use YoastSEO_Vendor\Psr\Http\Message\RequestInterface;
[6] Fix | Delete
use YoastSEO_Vendor\Psr\Http\Message\ResponseInterface;
[7] Fix | Delete
use YoastSEO_Vendor\Psr\Http\Message\UriInterface;
[8] Fix | Delete
/**
[9] Fix | Delete
* Client interface for sending HTTP requests.
[10] Fix | Delete
*/
[11] Fix | Delete
interface ClientInterface
[12] Fix | Delete
{
[13] Fix | Delete
/**
[14] Fix | Delete
* The Guzzle major version.
[15] Fix | Delete
*/
[16] Fix | Delete
public const MAJOR_VERSION = 7;
[17] Fix | Delete
/**
[18] Fix | Delete
* Send an HTTP request.
[19] Fix | Delete
*
[20] Fix | Delete
* @param RequestInterface $request Request to send
[21] Fix | Delete
* @param array $options Request options to apply to the given
[22] Fix | Delete
* request and to the transfer.
[23] Fix | Delete
*
[24] Fix | Delete
* @throws GuzzleException
[25] Fix | Delete
*/
[26] Fix | Delete
public function send(\YoastSEO_Vendor\Psr\Http\Message\RequestInterface $request, array $options = []) : \YoastSEO_Vendor\Psr\Http\Message\ResponseInterface;
[27] Fix | Delete
/**
[28] Fix | Delete
* Asynchronously send an HTTP request.
[29] Fix | Delete
*
[30] Fix | Delete
* @param RequestInterface $request Request to send
[31] Fix | Delete
* @param array $options Request options to apply to the given
[32] Fix | Delete
* request and to the transfer.
[33] Fix | Delete
*/
[34] Fix | Delete
public function sendAsync(\YoastSEO_Vendor\Psr\Http\Message\RequestInterface $request, array $options = []) : \YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface;
[35] Fix | Delete
/**
[36] Fix | Delete
* Create and send an HTTP request.
[37] Fix | Delete
*
[38] Fix | Delete
* Use an absolute path to override the base path of the client, or a
[39] Fix | Delete
* relative path to append to the base path of the client. The URL can
[40] Fix | Delete
* contain the query string as well.
[41] Fix | Delete
*
[42] Fix | Delete
* @param string $method HTTP method.
[43] Fix | Delete
* @param string|UriInterface $uri URI object or string.
[44] Fix | Delete
* @param array $options Request options to apply.
[45] Fix | Delete
*
[46] Fix | Delete
* @throws GuzzleException
[47] Fix | Delete
*/
[48] Fix | Delete
public function request(string $method, $uri, array $options = []) : \YoastSEO_Vendor\Psr\Http\Message\ResponseInterface;
[49] Fix | Delete
/**
[50] Fix | Delete
* Create and send an asynchronous HTTP request.
[51] Fix | Delete
*
[52] Fix | Delete
* Use an absolute path to override the base path of the client, or a
[53] Fix | Delete
* relative path to append to the base path of the client. The URL can
[54] Fix | Delete
* contain the query string as well. Use an array to provide a URL
[55] Fix | Delete
* template and additional variables to use in the URL template expansion.
[56] Fix | Delete
*
[57] Fix | Delete
* @param string $method HTTP method
[58] Fix | Delete
* @param string|UriInterface $uri URI object or string.
[59] Fix | Delete
* @param array $options Request options to apply.
[60] Fix | Delete
*/
[61] Fix | Delete
public function requestAsync(string $method, $uri, array $options = []) : \YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface;
[62] Fix | Delete
/**
[63] Fix | Delete
* Get a client configuration option.
[64] Fix | Delete
*
[65] Fix | Delete
* These options include default request options of the client, a "handler"
[66] Fix | Delete
* (if utilized by the concrete client), and a "base_uri" if utilized by
[67] Fix | Delete
* the concrete client.
[68] Fix | Delete
*
[69] Fix | Delete
* @param string|null $option The config option to retrieve.
[70] Fix | Delete
*
[71] Fix | Delete
* @return mixed
[72] Fix | Delete
*
[73] Fix | Delete
* @deprecated ClientInterface::getConfig will be removed in guzzlehttp/guzzle:8.0.
[74] Fix | Delete
*/
[75] Fix | Delete
public function getConfig(string $option = null);
[76] Fix | Delete
}
[77] Fix | Delete
[78] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function