Yoast\WP\SEO\Analytics\Domain

To_Be_Cleaned_Indexable_Count::__constructpublicYoast 1.0

The constructor.

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

Хуков нет.

Возвращает

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

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

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

Код To_Be_Cleaned_Indexable_Count::__construct() Yoast 28.3

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