Completed
Push — update/package-tracks-move-mor... ( 526f0c...a289f8 )
by
unknown
33:17 queued 23:41
created
packages/connection/src/Manager.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 * WordPress.com.
59 59
 	 *
60 60
 	 * @param Integer $user_id the user identifier.
61
-	 * @return Boolean is the user connected?
61
+	 * @return integer is the user connected?
62 62
 	 */
63 63
 	public function is_user_connected( $user_id ) {
64 64
 		return $user_id;
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 * Get the wpcom user data of the current|specified connected user.
69 69
 	 *
70 70
 	 * @param Integer $user_id the user identifier.
71
-	 * @return Object the user object.
71
+	 * @return integer the user object.
72 72
 	 */
73 73
 	public function get_connected_user_data( $user_id ) {
74 74
 		return $user_id;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	 * Is the user the connection owner.
79 79
 	 *
80 80
 	 * @param Integer $user_id the user identifier.
81
-	 * @return Boolean is the user the connection owner?
81
+	 * @return integer is the user the connection owner?
82 82
 	 */
83 83
 	public function is_connection_owner( $user_id ) {
84 84
 		return $user_id;
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 	 * 2. Stored Normal Tokens (via Jetpack_Options::get_option( 'blog_token' ))
400 400
 	 * 3. Defined Normal Tokens (via the JETPACK_BLOG_TOKEN constant)
401 401
 	 *
402
-	 * @param int|false    $user_id   false: Return the Blog Token. int: Return that user's User Token.
402
+	 * @param boolean    $user_id   false: Return the Blog Token. int: Return that user's User Token.
403 403
 	 * @param string|false $token_key If provided, check that the token matches the provided input.
404 404
 	 *
405 405
 	 * @return object|false
Please login to merge, or discard this patch.
tools/import-translations.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 /**
23 23
  * Converts GlotPress URL into a GlotPress API URL
24 24
  *
25
- * @param sring $url URL
25
+ * @param string $url URL
26 26
  * @return sstring API URL
27 27
  */
28 28
 function apize_url( $url ) {
Please login to merge, or discard this patch.
packages/tracking/src/Tracking.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,6 @@
 block discarded – undo
49 49
 	/**
50 50
 	 * Record an event in Tracks - this is the preferred way to record events from PHP.
51 51
 	 *
52
-	 * @param mixed $identity username, user_id, or WP_user object
53 52
 	 * @param string $event_name The name of the event
54 53
 	 * @param array $properties Custom properties to send with the event
55 54
 	 * @param int $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred
Please login to merge, or discard this patch.