Completed
Push — update/react-plugin-use-wordpr... ( 5a93d2...56c92c )
by Jeremy
08:35
created
_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.
modules/shortcodes/getty.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
  *
87 87
  * @param string $content Post content.
88 88
  *
89
- * @return mixed
89
+ * @return string
90 90
  */
91 91
 function wpcom_shortcodereverse_getty( $content ) {
92 92
 	if ( ! is_string( $content ) || false === stripos( $content, '.gettyimages.com/' ) ) {
Please login to merge, or discard this patch.
packages/connection/src/class-utils.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 	 * @param int    $user_id The user id.
46 46
 	 * @param string $token The user token.
47 47
 	 * @param bool   $is_master_user Whether the user is the master user.
48
-	 * @return bool
48
+	 * @return boolean|null
49 49
 	 */
50 50
 	public static function update_user_token( $user_id, $token, $is_master_user ) {
51 51
 		// Not designed for concurrent updates.
Please login to merge, or discard this patch.
packages/redirect/tests/php/bootstrap.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -92,6 +92,10 @@
 block discarded – undo
92 92
 	return $ret;
93 93
 }
94 94
 
95
+/**
96
+ * @param string $prefix
97
+ * @param string $sep
98
+ */
95 99
 function _http_build_query( $data, $prefix = null, $sep = null, $key = '', $urlencode = true ) {
96 100
 	$ret = array();
97 101
 
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.
packages/jitm/src/class-post-connection-jitm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
 	 *
104 104
 	 * @param string $content The current message.
105 105
 	 *
106
-	 * @return array The new message.
106
+	 * @return string The new message.
107 107
 	 */
108 108
 	public static function jitm_woocommerce_services_msg( $content ) {
109 109
 		if ( ! function_exists( 'wc_get_base_location' ) ) {
Please login to merge, or discard this patch.
wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-external-media.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -297,7 +297,7 @@
 block discarded – undo
297 297
 	 * Returns a download URL, dealing with Google's long file names.
298 298
 	 *
299 299
 	 * @param array $guid Media information.
300
-	 * @return string|\WP_Error
300
+	 * @return string
301 301
 	 */
302 302
 	public function get_download_url( $guid ) {
303 303
 		$this->tmp_name = $guid['name'];
Please login to merge, or discard this patch.