Completed
Push — update/security-widget-languag... ( 75ac2c...0fa1b8 )
by
unknown
126:04 queued 116:11
created
docker/mu-plugins/debug.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -40,6 +40,7 @@
 block discarded – undo
40 40
  * l($arg1, $arg2) will call l($arg1) and l($arg2) and then return $arg1.
41 41
  *
42 42
  * A null argument will log the file and line number of the l() call.
43
+ * @param string $stuff
43 44
  */
44 45
 function l( $stuff = null ) {
45 46
 	// Do nothing when debugging is off
Please login to merge, or discard this patch.
_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.
woocommerce-analytics/classes/wp-woocommerce-analytics-universal.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 	/**
293 293
 	 * Get the current user id
294 294
 	 *
295
-	 * @return int
295
+	 * @return string
296 296
 	 */
297 297
 	public function get_user_id() {
298 298
 		if ( is_user_logged_in() ) {
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 	/**
326 326
 	 * @param $product_id
327 327
 	 * @param $quantity
328
-	 * @param $event
328
+	 * @param string $event
329 329
 	 */
330 330
 	public function capture_event_in_session_data( $product_id, $quantity, $event ) {
331 331
 
Please login to merge, or discard this patch.