Yoast\WP\SEO\Analytics\Domain

Missing_Indexable_Count::__constructpublicYoast 1.0

The constructor.

Метод класса: Missing_Indexable_Count{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Missing_Indexable_Count = new Missing_Indexable_Count();
$Missing_Indexable_Count->__construct( $indexable_type, $count );
$indexable_type(строка) (обязательный)
The indexable type that is represented by this.
$count(int) (обязательный)
The amount of missing indexables.

Код Missing_Indexable_Count::__construct() Yoast 27.7

public function __construct( $indexable_type, $count ) {
	$this->indexable_type = $indexable_type;
	$this->count          = $count;
}