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/clone/wp-conte.../plugins/wordpres.../src/actions/importin...
File: importing-action-interface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace Yoast\WP\SEO\Actions\Importing;
[2] Fix | Delete
[3] Fix | Delete
use Yoast\WP\SEO\Actions\Indexing\Limited_Indexing_Action_Interface;
[4] Fix | Delete
[5] Fix | Delete
interface Importing_Action_Interface extends Importing_Indexation_Action_Interface, Limited_Indexing_Action_Interface {
[6] Fix | Delete
[7] Fix | Delete
/**
[8] Fix | Delete
* Returns the name of the plugin we import from.
[9] Fix | Delete
*
[10] Fix | Delete
* @return string The plugin name.
[11] Fix | Delete
*/
[12] Fix | Delete
public function get_plugin();
[13] Fix | Delete
[14] Fix | Delete
/**
[15] Fix | Delete
* Returns the type of data we import.
[16] Fix | Delete
*
[17] Fix | Delete
* @return string The type of data.
[18] Fix | Delete
*/
[19] Fix | Delete
public function get_type();
[20] Fix | Delete
[21] Fix | Delete
/**
[22] Fix | Delete
* Whether or not this action is capable of importing given a specific plugin and type.
[23] Fix | Delete
*
[24] Fix | Delete
* @param string|null $plugin The name of the plugin being imported.
[25] Fix | Delete
* @param string|null $type The component of the plugin being imported.
[26] Fix | Delete
*
[27] Fix | Delete
* @return bool True if the action can import the given plugin's data of the given type.
[28] Fix | Delete
*/
[29] Fix | Delete
public function is_compatible_with( $plugin = null, $type = null );
[30] Fix | Delete
}
[31] Fix | Delete
[32] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function