Completed
Push — add/client-example-plugin ( 53be53...24d80a )
by
unknown
204:45 queued 195:07
created
projects/plugins/jetpack/3rd-party/qtranslate-x.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
  * @param string $url_orig Original URL.
19 19
  * @param array  $url_info  Pieces of original URL.
20 20
  *
21
- * @return bool
21
+ * @return false|string
22 22
  */
23 23
 function jetpack_no_qtranslate_rest_url_redirect( $url_lang, $url_orig, $url_info ) {
24 24
 	if ( false !== strpos( $url_info['wp-path'], 'wp-json/jetpack' ) ) {
Please login to merge, or discard this patch.
projects/plugins/jetpack/3rd-party/woocommerce.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
  * Add a callback for WooCommerce product rendering in infinite scroll.
67 67
  *
68 68
  * @param array $callbacks Array of render callpacks for IS.
69
- * @return array
69
+ * @return string[]
70 70
  */
71 71
 function jetpack_woocommerce_infinite_scroll_render_callback( $callbacks ) {
72 72
 	$callbacks[] = 'jetpack_woocommerce_infinite_scroll_render';
Please login to merge, or discard this patch.
projects/plugins/jetpack/_inc/class.jetpack-provision.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -249,6 +249,9 @@
 block discarded – undo
249 249
 		}
250 250
 	}
251 251
 
252
+	/**
253
+	 * @param string $access_token
254
+	 */
252 255
 	private static function verify_token( $access_token ) {
253 256
 		$request = array(
254 257
 			'headers' => array(
Please login to merge, or discard this patch.
plugins/jetpack/_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.
projects/plugins/jetpack/_inc/lib/class.color.php 1 patch
Doc Comments   +13 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,6 +149,9 @@  discard block
 block discarded – undo
149 149
 
150 150
 	/**
151 151
 	 * Helper function for Jetpack_Color::fromHsl()
152
+	 * @param double $p
153
+	 * @param double $q
154
+	 * @param integer $t
152 155
 	 */
153 156
 	private function hue2rgb( $p, $q, $t ) {
154 157
 		if ( $t < 0 ) $t += 1;
@@ -498,7 +501,7 @@  discard block
 block discarded – undo
498 501
 	 *
499 502
 	 * @param Jetpack_Color $color
500 503
 	 *
501
-	 * @return int
504
+	 * @return double
502 505
 	 */
503 506
 	public function getDistanceRgbFrom(Jetpack_Color $color)
504 507
 	{
@@ -687,6 +690,9 @@  discard block
 block discarded – undo
687 690
 		return $this->incrementLightness( $amount );
688 691
 	}
689 692
 
693
+	/**
694
+	 * @param integer $amount
695
+	 */
690 696
 	public function incrementLightness( $amount ) {
691 697
 		$hsl = $this->toHsl();
692 698
 		extract( $hsl );
@@ -704,6 +710,9 @@  discard block
 block discarded – undo
704 710
 		return $this->incrementSaturation( - $amount );
705 711
 	}
706 712
 
713
+	/**
714
+	 * @param integer $amount
715
+	 */
707 716
 	public function incrementSaturation( $amount ) {
708 717
 		$hsl = $this->toHsl();
709 718
 		extract( $hsl );
@@ -744,6 +753,9 @@  discard block
 block discarded – undo
744 753
 		return $this->incrementHue( $incr );
745 754
 	}
746 755
 
756
+	/**
757
+	 * @param integer $amount
758
+	 */
747 759
 	public function incrementHue( $amount ) {
748 760
 		$hsl = $this->toHsl();
749 761
 		extract( $hsl );
Please login to merge, or discard this patch.
projects/plugins/jetpack/_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.
projects/plugins/jetpack/_inc/lib/class.jetpack-keyring-service-helper.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -100,6 +100,10 @@  discard block
 block discarded – undo
100 100
 		), menu_page_url( 'sharing', false ) );
101 101
 	}
102 102
 
103
+	/**
104
+	 * @param string $service_name
105
+	 * @param string $for
106
+	 */
103 107
 	static function refresh_url( $service_name, $for ) {
104 108
 		return add_query_arg( array(
105 109
 			'action'   => 'request',
@@ -111,6 +115,10 @@  discard block
 block discarded – undo
111 115
 		), admin_url( 'options-general.php?page=sharing' ) );
112 116
 	}
113 117
 
118
+	/**
119
+	 * @param string $service_name
120
+	 * @param string $id
121
+	 */
114 122
 	static function disconnect_url( $service_name, $id ) {
115 123
 		return add_query_arg( array(
116 124
 			'action'   => 'delete',
Please login to merge, or discard this patch.
projects/plugins/jetpack/_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.
plugins/jetpack/_inc/lib/class.jetpack-search-performance-logger.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -62,6 +62,10 @@
 block discarded – undo
62 62
 		return $query->is_main_query() && $query->is_search();
63 63
 	}
64 64
 
65
+	/**
66
+	 * @param double $duration
67
+	 * @param boolean $was_jetpack_search
68
+	 */
65 69
 	private function record_query_time( $duration, $was_jetpack_search ) {
66 70
 		$this->stats[] = array( $was_jetpack_search, (int) ( $duration * 1000 ) );
67 71
 	}
Please login to merge, or discard this patch.