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.../psr/http-fac.../src
File: StreamFactoryInterface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace YoastSEO_Vendor\Psr\Http\Message;
[2] Fix | Delete
[3] Fix | Delete
interface StreamFactoryInterface
[4] Fix | Delete
{
[5] Fix | Delete
/**
[6] Fix | Delete
* Create a new stream from a string.
[7] Fix | Delete
*
[8] Fix | Delete
* The stream SHOULD be created with a temporary resource.
[9] Fix | Delete
*
[10] Fix | Delete
* @param string $content String content with which to populate the stream.
[11] Fix | Delete
*
[12] Fix | Delete
* @return StreamInterface
[13] Fix | Delete
*/
[14] Fix | Delete
public function createStream(string $content = '') : \YoastSEO_Vendor\Psr\Http\Message\StreamInterface;
[15] Fix | Delete
/**
[16] Fix | Delete
* Create a stream from an existing file.
[17] Fix | Delete
*
[18] Fix | Delete
* The file MUST be opened using the given mode, which may be any mode
[19] Fix | Delete
* supported by the `fopen` function.
[20] Fix | Delete
*
[21] Fix | Delete
* The `$filename` MAY be any string supported by `fopen()`.
[22] Fix | Delete
*
[23] Fix | Delete
* @param string $filename Filename or stream URI to use as basis of stream.
[24] Fix | Delete
* @param string $mode Mode with which to open the underlying filename/stream.
[25] Fix | Delete
*
[26] Fix | Delete
* @return StreamInterface
[27] Fix | Delete
* @throws \RuntimeException If the file cannot be opened.
[28] Fix | Delete
* @throws \InvalidArgumentException If the mode is invalid.
[29] Fix | Delete
*/
[30] Fix | Delete
public function createStreamFromFile(string $filename, string $mode = 'r') : \YoastSEO_Vendor\Psr\Http\Message\StreamInterface;
[31] Fix | Delete
/**
[32] Fix | Delete
* Create a new stream from an existing resource.
[33] Fix | Delete
*
[34] Fix | Delete
* The stream MUST be readable and may be writable.
[35] Fix | Delete
*
[36] Fix | Delete
* @param resource $resource PHP resource to use as basis of stream.
[37] Fix | Delete
*
[38] Fix | Delete
* @return StreamInterface
[39] Fix | Delete
*/
[40] Fix | Delete
public function createStreamFromResource($resource) : \YoastSEO_Vendor\Psr\Http\Message\StreamInterface;
[41] Fix | Delete
}
[42] Fix | Delete
[43] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function