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/network-.../componen.../db/category
File: NetsPostsTaxonomyQueryBuilder.php
<?php
[0] Fix | Delete
[1] Fix | Delete
[2] Fix | Delete
namespace NetworkPosts\DB\Category;
[3] Fix | Delete
[4] Fix | Delete
[5] Fix | Delete
abstract class NetsPostsTaxonomyQueryBuilder {
[6] Fix | Delete
private $blog_id = 1;
[7] Fix | Delete
private $base_prefix;
[8] Fix | Delete
private $taxonomy_types = array();
[9] Fix | Delete
[10] Fix | Delete
public function __construct( string $base_prefix, int $blog_id = 1 ) {
[11] Fix | Delete
$this->base_prefix = $base_prefix;
[12] Fix | Delete
$this->blog_id = $blog_id;
[13] Fix | Delete
}
[14] Fix | Delete
[15] Fix | Delete
public function set_blog_id( int $id ): void {
[16] Fix | Delete
$this->blog_id = $id;
[17] Fix | Delete
}
[18] Fix | Delete
[19] Fix | Delete
/**
[20] Fix | Delete
* @param string[] $types
[21] Fix | Delete
*/
[22] Fix | Delete
public function set_taxonomy_types( array $types ): void {
[23] Fix | Delete
$this->taxonomy_types = $types;
[24] Fix | Delete
}
[25] Fix | Delete
}
[26] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function