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/user-met.../framewor.../custom-m...
File: keyword-analysis-disable.php
<?php
[0] Fix | Delete
[1] Fix | Delete
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
[2] Fix | Delete
namespace Yoast\WP\SEO\User_Meta\Framework\Custom_Meta;
[3] Fix | Delete
[4] Fix | Delete
use Yoast\WP\SEO\User_Meta\Domain\Custom_Meta_Interface;
[5] Fix | Delete
[6] Fix | Delete
/**
[7] Fix | Delete
* The Keyword_Analysis_Disable custom meta.
[8] Fix | Delete
*/
[9] Fix | Delete
class Keyword_Analysis_Disable implements Custom_Meta_Interface {
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* Returns the db key of the Keyword_Analysis_Disable custom meta.
[13] Fix | Delete
*
[14] Fix | Delete
* @return string The db key of the Keyword_Analysis_Disable custom meta.
[15] Fix | Delete
*/
[16] Fix | Delete
public function get_key(): string {
[17] Fix | Delete
return 'wpseo_keyword_analysis_disable';
[18] Fix | Delete
}
[19] Fix | Delete
[20] Fix | Delete
/**
[21] Fix | Delete
* Returns the id of the custom meta's form field.
[22] Fix | Delete
*
[23] Fix | Delete
* @return string The id of the custom meta's form field.
[24] Fix | Delete
*/
[25] Fix | Delete
public function get_field_id(): string {
[26] Fix | Delete
return 'wpseo_keyword_analysis_disable';
[27] Fix | Delete
}
[28] Fix | Delete
[29] Fix | Delete
/**
[30] Fix | Delete
* Returns whether the custom meta is allowed to be empty.
[31] Fix | Delete
*
[32] Fix | Delete
* @return bool Whether the custom meta is allowed to be empty.
[33] Fix | Delete
*/
[34] Fix | Delete
public function is_empty_allowed(): bool {
[35] Fix | Delete
return true;
[36] Fix | Delete
}
[37] Fix | Delete
}
[38] Fix | Delete
[39] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function