post_type = $post_type; $this->count = $count; } /** * Gets the count of indexables. * * @return int The count of indexables. */ public function get_count(): int { return $this->count; } /** * Gets the post type. * * @return string The post type. */ public function get_post_type(): string { return $this->post_type; } }