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.../public_h.../wp-conte.../plugins/wordpres.../src/models
File: indexable-hierarchy.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace Yoast\WP\SEO\Models;
[2] Fix | Delete
[3] Fix | Delete
use Yoast\WP\Lib\Model;
[4] Fix | Delete
[5] Fix | Delete
/**
[6] Fix | Delete
* Indexable Hierarchy model definition.
[7] Fix | Delete
*
[8] Fix | Delete
* @property int $indexable_id The ID of the indexable.
[9] Fix | Delete
* @property int $ancestor_id The ID of the indexable's ancestor.
[10] Fix | Delete
* @property int $depth The depth of the ancestry. 1 being a parent, 2 being a grandparent etc.
[11] Fix | Delete
* @property int $blog_id Blog ID.
[12] Fix | Delete
*/
[13] Fix | Delete
class Indexable_Hierarchy extends Model {
[14] Fix | Delete
[15] Fix | Delete
/**
[16] Fix | Delete
* Which columns contain int values.
[17] Fix | Delete
*
[18] Fix | Delete
* @var array
[19] Fix | Delete
*/
[20] Fix | Delete
protected $int_columns = [
[21] Fix | Delete
'indexable_id',
[22] Fix | Delete
'ancestor_id',
[23] Fix | Delete
'depth',
[24] Fix | Delete
'blog_id',
[25] Fix | Delete
];
[26] Fix | Delete
}
[27] Fix | Delete
[28] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function