Completed
Push — improving-sync-with-enej ( cd97c4...50d0d9 )
by
unknown
16:40 queued 07:38
created
_inc/lib/class.jetpack-user-event-tracking.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
 		return self::set( $user_id, 1 );
34 34
 	}
35 35
 
36
+	/**
37
+	 * @param integer $value
38
+	 */
36 39
 	static private function set( $user_id, $value ) {
37 40
 		return update_user_meta( $user_id, self::$KEY, $value );
38 41
 	}
Please login to merge, or discard this patch.
sync/class.jetpack-sync-item.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
 	private $state; // The state of the object, eg `is_just_published`
9 9
 	private $trigger; // The action that triggers the sync operation, eg `save_post`
10 10
 
11
+	/**
12
+	 * @param string $trigger
13
+	 */
11 14
 	function __construct( $trigger, $object = null ) {
12 15
 		$this->trigger = $trigger;
13 16
 		if ( $object ) {
Please login to merge, or discard this patch.