Completed
Push — add/sync-rest-2 ( b9a7dc...c10a39 )
by
unknown
09:22
created
sync/class.jetpack-sync-utils.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -2,6 +2,9 @@  discard block
 block discarded – undo
2 2
 
3 3
 class Jetpack_Sync_Utils {
4 4
 
5
+	/**
6
+	 * @param string $check_sum_id
7
+	 */
5 8
 	static function sync( $check_sum_id, $values ) {
6 9
 		$current_check_sum = self::get_check_sum( $values );
7 10
 		if ( Jetpack_Options::get_option( $check_sum_id ) !== $current_check_sum ) {
@@ -20,6 +23,9 @@  discard block
 block discarded – undo
20 23
 		return crc32( self::get_query_string( $values ) );
21 24
 	}
22 25
 
26
+	/**
27
+	 * @return string
28
+	 */
23 29
 	static function get_query_string( $values ) {
24 30
 		return build_query( $values );
25 31
 	}
Please login to merge, or discard this patch.