Yoast\WP\SEO\Analytics\Domain

Missing_Indexable_Bucket::to_arraypublicYoast 1.0

Returns the array representation of all indexable counts.

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

Хуков нет.

Возвращает

Массив.

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

$Missing_Indexable_Bucket = new Missing_Indexable_Bucket();
$Missing_Indexable_Bucket->to_array();

Код Missing_Indexable_Bucket::to_array() Yoast 27.7

public function to_array() {
	return \array_map(
		static function ( $item ) {
			return $item->to_array();
		},
		$this->missing_indexable_counts,
	);
}