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/clone/wp-conte.../plugins/accelera.../includes/vendor/tool
File: RemoteGetRequest.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace AmpProject;
[2] Fix | Delete
[3] Fix | Delete
use AmpProject\Exception\FailedRemoteRequest;
[4] Fix | Delete
[5] Fix | Delete
/**
[6] Fix | Delete
* Interface for abstracting away the transport that is being used for making remote requests.
[7] Fix | Delete
*
[8] Fix | Delete
* This allows external code to replace the transport and tests to mock it.
[9] Fix | Delete
*
[10] Fix | Delete
* @package ampproject/amp-toolbox
[11] Fix | Delete
*/
[12] Fix | Delete
interface RemoteGetRequest
[13] Fix | Delete
{
[14] Fix | Delete
[15] Fix | Delete
/**
[16] Fix | Delete
* Do a GET request to retrieve the contents of a remote URL.
[17] Fix | Delete
*
[18] Fix | Delete
* @param string $url URL to get.
[19] Fix | Delete
* @return Response Response for the executed request.
[20] Fix | Delete
* @throws FailedRemoteRequest If retrieving the contents from the URL failed.
[21] Fix | Delete
*/
[22] Fix | Delete
public function get($url);
[23] Fix | Delete
}
[24] Fix | Delete
[25] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function