WP_Sync_Post_Meta_Storage::get_update_count( string $room ): int

In this article

Gets the number of updates stored for a given room.

Parameters

$roomstringrequired
Room identifier.

Return

int Number of updates stored for the room.

Source

public function get_update_count( string $room ): int {
	return $this->room_update_counts[ $room ] ?? 0;
}

Changelog

VersionDescription
7.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.