Completed
Push — fix/full-sync-without-queue ( 8aaba8 )
by
unknown
20:00 queued 10:21
created
sync/class.jetpack-full-sync.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -119,6 +119,9 @@  discard block
 block discarded – undo
119 119
 		return $default;
120 120
 	}
121 121
 
122
+	/**
123
+	 * @param string $name
124
+	 */
122 125
 	private static function update_grouped_option( $group, $name, $value ) {
123 126
 		$options = get_option( self::$grouped_options[ $group ] );
124 127
 		if ( ! is_array( $options ) ) {
@@ -217,6 +220,9 @@  discard block
 block discarded – undo
217 220
 		return $result;
218 221
 	}
219 222
 
223
+	/**
224
+	 * @param string $name
225
+	 */
220 226
 	private static function get_grouped_option( $group, $name, $default ) {
221 227
 		$options = get_option( self::$grouped_options[ $group ] );
222 228
 		if ( is_array( $options ) && isset( $options[ $name ] ) ) {
Please login to merge, or discard this patch.