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/popup-ma.../classes/Interfac.../Batch
File: PrefetchProcess.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Interface for Batch PrefetchProcess
[2] Fix | Delete
*
[3] Fix | Delete
* @package PUM
[4] Fix | Delete
* @copyright Copyright (c) 2023, Code Atlantic LLC
[5] Fix | Delete
*/
[6] Fix | Delete
[7] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[8] Fix | Delete
exit;
[9] Fix | Delete
}
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* Second-level interface for registering a batch process that leverages
[13] Fix | Delete
* pre-fetch and data storage.
[14] Fix | Delete
*
[15] Fix | Delete
* @since 1.7.0
[16] Fix | Delete
*/
[17] Fix | Delete
interface PUM_Interface_Batch_PrefetchProcess extends PUM_Interface_Batch_Process {
[18] Fix | Delete
[19] Fix | Delete
/**
[20] Fix | Delete
* Initializes the batch process.
[21] Fix | Delete
*
[22] Fix | Delete
* This is the point where any relevant data should be initialized for use by the processor methods.
[23] Fix | Delete
*
[24] Fix | Delete
* @param null|mixed $data
[25] Fix | Delete
*
[26] Fix | Delete
* @return void
[27] Fix | Delete
*/
[28] Fix | Delete
public function init( $data = null );
[29] Fix | Delete
[30] Fix | Delete
/**
[31] Fix | Delete
* Pre-fetches data to speed up processing.
[32] Fix | Delete
*/
[33] Fix | Delete
public function pre_fetch();
[34] Fix | Delete
[35] Fix | Delete
}
[36] Fix | Delete
[37] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function