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.../promises/src
File: TaskQueueInterface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
declare (strict_types=1);
[2] Fix | Delete
namespace YoastSEO_Vendor\GuzzleHttp\Promise;
[3] Fix | Delete
[4] Fix | Delete
interface TaskQueueInterface
[5] Fix | Delete
{
[6] Fix | Delete
/**
[7] Fix | Delete
* Returns true if the queue is empty.
[8] Fix | Delete
*/
[9] Fix | Delete
public function isEmpty() : bool;
[10] Fix | Delete
/**
[11] Fix | Delete
* Adds a task to the queue that will be executed the next time run is
[12] Fix | Delete
* called.
[13] Fix | Delete
*/
[14] Fix | Delete
public function add(callable $task) : void;
[15] Fix | Delete
/**
[16] Fix | Delete
* Execute all of the pending task in the queue.
[17] Fix | Delete
*/
[18] Fix | Delete
public function run() : void;
[19] Fix | Delete
}
[20] Fix | Delete
[21] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function