Completed
Push — fix/appearance-menu ( ef2b21...41f5cb )
by
unknown
46:54 queued 37:50
created
modules/widgets/flickr.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
 		 *
117 117
 		 * These values are used in new widgets.
118 118
 		 *
119
-		 * @return array Default values for the widget options.
119
+		 * @return string Default values for the widget options.
120 120
 		 */
121 121
 		public function defaults() {
122 122
 			return array(
Please login to merge, or discard this patch.
_inc/lib/class.core-rest-api-endpoints.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -1264,7 +1264,6 @@
 block discarded – undo
1264 1264
 	 *
1265 1265
 	 * @since 4.3.0
1266 1266
 	 *
1267
-	 * @param WP_REST_Request $request The request sent to the WP REST API.
1268 1267
 	 *
1269 1268
 	 * @return object
1270 1269
 	 */
Please login to merge, or discard this patch.
3rd-party/class-jetpack-bbpress-rest-api.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	 *
46 46
 	 * @param array $allowed_post_types Allowed post types.
47 47
 	 *
48
-	 * @return array
48
+	 * @return string[]
49 49
 	 */
50 50
 	public function allow_bbpress_post_types( $allowed_post_types ) {
51 51
 		$allowed_post_types[] = 'forum';
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	 *
60 60
 	 * @param array $allowed_meta_keys Allowed meta keys.
61 61
 	 *
62
-	 * @return array
62
+	 * @return string[]
63 63
 	 */
64 64
 	public function allow_bbpress_public_metadata( $allowed_meta_keys ) {
65 65
 		$allowed_meta_keys[] = '_bbp_forum_id';
Please login to merge, or discard this patch.
_inc/lib/class.jetpack-password-checker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -410,7 +410,7 @@
 block discarded – undo
410 410
 	 *
411 411
 	 * @param Mixed $needle the needle.
412 412
 	 * @param array $haystack the haystack.
413
-	 * @return is the needle not in the haystack?
413
+	 * @return boolean the needle not in the haystack?
414 414
 	 */
415 415
 	protected function negative_in_array( $needle, $haystack ) {
416 416
 		if ( in_array( $needle, $haystack, true ) ) {
Please login to merge, or discard this patch.
_inc/lib/class-jetpack-instagram-gallery-helper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 	 *
19 19
 	 * @param  string $access_token The Instagram access token.
20 20
 	 * @param  int    $count        The number of Instagram posts to fetch.
21
-	 * @return mixed
21
+	 * @return integer|null
22 22
 	 */
23 23
 	public static function get_instagram_gallery( $access_token, $count ) {
24 24
 		$site_id = self::get_site_id();
Please login to merge, or discard this patch.
modules/scan/class-admin-bar-notice.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
 	/**
144 144
 	 *
145 145
 	 * Return Whether boolean cached threats exist or null if the state is unknown.
146
-	 * * @return boolean or null
146
+	 * * @return null|boolean or null
147 147
 	 */
148 148
 	public function has_threats() {
149 149
 		$scan_state = get_transient( 'jetpack_scan_state' );
Please login to merge, or discard this patch.
modules/gravatar-hovercards.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
  * @param string $avatar The <img/> element of the avatar.
155 155
  * @param mixed $author User ID, email address, user login, comment object, user object, post object
156 156
  *
157
- * @return The <img/> element of the avatar.
157
+ * @return string <img/> element of the avatar.
158 158
  */
159 159
 function grofiles_get_avatar( $avatar, $author ) {
160 160
 	$is_amp = class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request();
Please login to merge, or discard this patch.
classes/class-jetpack-woocommerce-analytics-universal.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -310,7 +310,7 @@
 block discarded – undo
310 310
 	/**
311 311
 	 * Get the current user id
312 312
 	 *
313
-	 * @return int
313
+	 * @return string
314 314
 	 */
315 315
 	public function get_user_id() {
316 316
 		if ( is_user_logged_in() ) {
Please login to merge, or discard this patch.
modules/subscriptions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -514,7 +514,7 @@
 block discarded – undo
514 514
 	 * Send a synchronous XML-RPC subscribe to blog posts or subscribe to post comments request.
515 515
 	 *
516 516
 	 * @param string $email
517
-	 * @param array  $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts
517
+	 * @param integer  $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts
518 518
 	 * @param bool   $async    (optional) Should the subscription be performed asynchronously?  Defaults to true.
519 519
 	 *
520 520
 	 * @return true|WP_Error true on success
Please login to merge, or discard this patch.