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/user-met.../domain
File: custom-meta-interface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace Yoast\WP\SEO\User_Meta\Domain;
[2] Fix | Delete
[3] Fix | Delete
/**
[4] Fix | Delete
* This interface describes a custom meta.
[5] Fix | Delete
*/
[6] Fix | Delete
interface Custom_Meta_Interface {
[7] Fix | Delete
[8] Fix | Delete
/**
[9] Fix | Delete
* Returns the db key of the custom meta.
[10] Fix | Delete
*
[11] Fix | Delete
* @return string
[12] Fix | Delete
*/
[13] Fix | Delete
public function get_key(): string;
[14] Fix | Delete
[15] Fix | Delete
/**
[16] Fix | Delete
* Returns the id of the custom meta's form field.
[17] Fix | Delete
*
[18] Fix | Delete
* @return string
[19] Fix | Delete
*/
[20] Fix | Delete
public function get_field_id(): string;
[21] Fix | Delete
[22] Fix | Delete
/**
[23] Fix | Delete
* Returns whether the custom meta is allowed to be empty.
[24] Fix | Delete
*
[25] Fix | Delete
* @return bool
[26] Fix | Delete
*/
[27] Fix | Delete
public function is_empty_allowed(): bool;
[28] Fix | Delete
}
[29] Fix | Delete
[30] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function