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.../src/actions/importin...
File: importing-indexation-action-interface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace Yoast\WP\SEO\Actions\Importing;
[2] Fix | Delete
[3] Fix | Delete
/**
[4] Fix | Delete
* Interface definition of reindexing action for indexables.
[5] Fix | Delete
*/
[6] Fix | Delete
interface Importing_Indexation_Action_Interface {
[7] Fix | Delete
[8] Fix | Delete
/**
[9] Fix | Delete
* Returns the total number of unindexed objects.
[10] Fix | Delete
*
[11] Fix | Delete
* @return int The total number of unindexed objects.
[12] Fix | Delete
*/
[13] Fix | Delete
public function get_total_unindexed();
[14] Fix | Delete
[15] Fix | Delete
/**
[16] Fix | Delete
* Indexes a number of objects.
[17] Fix | Delete
*
[18] Fix | Delete
* NOTE: ALWAYS use limits, this method is intended to be called multiple times over several requests.
[19] Fix | Delete
*
[20] Fix | Delete
* For indexing that requires JavaScript simply return the objects that should be indexed.
[21] Fix | Delete
*
[22] Fix | Delete
* @return array The reindexed objects.
[23] Fix | Delete
*/
[24] Fix | Delete
public function index();
[25] Fix | Delete
[26] Fix | Delete
/**
[27] Fix | Delete
* Returns the number of objects that will be indexed in a single indexing pass.
[28] Fix | Delete
*
[29] Fix | Delete
* @return int The limit.
[30] Fix | Delete
*/
[31] Fix | Delete
public function get_limit();
[32] Fix | Delete
}
[33] Fix | Delete
[34] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function