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/editors/domain/integrat...
File: integration-data-provider-interface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
[2] Fix | Delete
namespace Yoast\WP\SEO\Editors\Domain\Integrations;
[3] Fix | Delete
[4] Fix | Delete
/**
[5] Fix | Delete
* Describes the interface for integration domain objects which can be enabled or not
[6] Fix | Delete
*/
[7] Fix | Delete
interface Integration_Data_Provider_Interface {
[8] Fix | Delete
[9] Fix | Delete
/**
[10] Fix | Delete
* If the integration is activated.
[11] Fix | Delete
*
[12] Fix | Delete
* @return bool If the integration is activated.
[13] Fix | Delete
*/
[14] Fix | Delete
public function is_enabled(): bool;
[15] Fix | Delete
[16] Fix | Delete
/**
[17] Fix | Delete
* Return this object represented by a key value array.
[18] Fix | Delete
*
[19] Fix | Delete
* @return array<string,bool> Returns the name and if the feature is enabled.
[20] Fix | Delete
*/
[21] Fix | Delete
public function to_array(): array;
[22] Fix | Delete
[23] Fix | Delete
/**
[24] Fix | Delete
* Returns this object represented by a key value structure that is compliant with the script data array.
[25] Fix | Delete
*
[26] Fix | Delete
* @return array<string,bool> Returns the legacy key and if the feature is enabled.
[27] Fix | Delete
*/
[28] Fix | Delete
public function to_legacy_array(): array;
[29] Fix | Delete
}
[30] Fix | Delete
[31] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function