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: UploadedFileFactoryInterface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace YoastSEO_Vendor\Psr\Http\Message;
[2] Fix | Delete
[3] Fix | Delete
interface UploadedFileFactoryInterface
[4] Fix | Delete
{
[5] Fix | Delete
/**
[6] Fix | Delete
* Create a new uploaded file.
[7] Fix | Delete
*
[8] Fix | Delete
* If a size is not provided it will be determined by checking the size of
[9] Fix | Delete
* the file.
[10] Fix | Delete
*
[11] Fix | Delete
* @see http://php.net/manual/features.file-upload.post-method.php
[12] Fix | Delete
* @see http://php.net/manual/features.file-upload.errors.php
[13] Fix | Delete
*
[14] Fix | Delete
* @param StreamInterface $stream Underlying stream representing the
[15] Fix | Delete
* uploaded file content.
[16] Fix | Delete
* @param int $size in bytes
[17] Fix | Delete
* @param int $error PHP file upload error
[18] Fix | Delete
* @param string $clientFilename Filename as provided by the client, if any.
[19] Fix | Delete
* @param string $clientMediaType Media type as provided by the client, if any.
[20] Fix | Delete
*
[21] Fix | Delete
* @return UploadedFileInterface
[22] Fix | Delete
*
[23] Fix | Delete
* @throws \InvalidArgumentException If the file resource is not readable.
[24] Fix | Delete
*/
[25] Fix | Delete
public function createUploadedFile(\YoastSEO_Vendor\Psr\Http\Message\StreamInterface $stream, int $size = null, int $error = \UPLOAD_ERR_OK, string $clientFilename = null, string $clientMediaType = null) : \YoastSEO_Vendor\Psr\Http\Message\UploadedFileInterface;
[26] Fix | Delete
}
[27] Fix | Delete
[28] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function