Completed
Push — renovate/gulp-tap-1.x ( 837c78...9e8806 )
by
unknown
185:47 queued 179:27
created
modules/theme-tools/featured-content.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -699,7 +699,7 @@
 block discarded – undo
699 699
 	 * handlers should be copied when the theme context is loaded by the REST API.
700 700
 	 *
701 701
 	 * @param array $copy_dirs Copy paths with actions to be copied
702
-	 * @return array Copy paths with featured content plugin
702
+	 * @return string[] Copy paths with featured content plugin
703 703
 	 */
704 704
 	function wpcom_rest_api_featured_content_copy_plugin_actions( $copy_dirs ) {
705 705
 		$copy_dirs[] = __FILE__;
Please login to merge, or discard this patch.
modules/theme-tools/infinite-scroll.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,6 @@
 block discarded – undo
40 40
 /**
41 41
  * Prevent IS from being activated if theme doesn't support it
42 42
  *
43
- * @param bool $can_activate
44 43
  * @filter jetpack_can_activate_infinite-scroll
45 44
  * @return bool
46 45
  */
Please login to merge, or discard this patch.
modules/theme-tools/responsive-videos.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@
 block discarded – undo
29 29
 /**
30 30
  * Adds a wrapper to videos and enqueue script
31 31
  *
32
+ * @param string $html
32 33
  * @return string
33 34
  */
34 35
 function jetpack_responsive_videos_embed_html( $html ) {
Please login to merge, or discard this patch.
modules/shortcodes/crowdsignal.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
 		add_action( 'infinite_scroll_render', array( $this, 'crowdsignal_shortcode_infinite' ), 11 );
26 26
 	}
27 27
 
28
+	/**
29
+	 * @param string $survey_link
30
+	 */
28 31
 	private function get_async_code( array $settings, $survey_link ) {
29 32
 		$include = <<<CONTAINER
30 33
 ( function( d, c, j ) {
Please login to merge, or discard this patch.
modules/sitemaps/sitemap-buffer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 	 *
155 155
 	 * @since 5.3.0
156 156
 	 *
157
-	 * @param array $array The item to be added.
157
+	 * @param string $array The item to be added.
158 158
 	 *
159 159
 	 * @return bool True if the append succeeded, False if not.
160 160
 	 */
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 	 * @param DOMElement  $parent (optional) an element to which new children should be added.
284 284
 	 * @param DOMDocument $root (optional) the parent document.
285 285
 	 *
286
-	 * @return string|DOMDocument The rendered XML string or an object if root element is specified.
286
+	 * @return null|DOMNode The rendered XML string or an object if root element is specified.
287 287
 	 */
288 288
 	protected function array_to_xml_string( $array, $parent = null, $root = null ) {
289 289
 		$return_string = false;
Please login to merge, or discard this patch.
_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.
_inc/lib/debugger/class-jetpack-cxn-test-base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
 	 *
130 130
 	 * @param string $group Testing group to check status of. Optional, default all tests.
131 131
 	 *
132
-	 * @return true|array True if all tests pass. Array of failed tests.
132
+	 * @return boolean True if all tests pass. Array of failed tests.
133 133
 	 */
134 134
 	public function pass( $group = 'default' ) {
135 135
 		$results = $this->raw_results( $group );
Please login to merge, or discard this patch.
modules/protect/math-fallback.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 		/**
27 27
 		 * Verifies that a user answered the math problem correctly while logging in.
28 28
 		 *
29
-		 * @return bool Returns true if the math is correct
29
+		 * @return boolean|null Returns true if the math is correct
30 30
 		 * @throws Error if insuffient $_POST variables are present.
31 31
 		 * @throws Error message if the math is wrong
32 32
 		 */
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 		/**
110 110
 		 * Requires a user to solve a simple equation. Added to any WordPress login form.
111 111
 		 *
112
-		 * @return VOID outputs html
112
+		 * @return string|null outputs html
113 113
 		 */
114 114
 		static function math_form() {
115 115
 			// Check if jpp_math_pass cookie is set and it matches valid transient
Please login to merge, or discard this patch.
class.json-api.php 1 patch
Doc Comments   +18 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@  discard block
 block discarded – undo
33 33
 	public $extra_headers = array();
34 34
 
35 35
 	/**
36
+	 * @param string $method
37
+	 * @param string $url
38
+	 * @param string $post_body
36 39
 	 * @return WPCOM_JSON_API instance
37 40
 	 */
38 41
 	static function init( $method = null, $url = null, $post_body = null ) {
@@ -335,6 +338,9 @@  discard block
 block discarded – undo
335 338
 		return call_user_func_array( array( $endpoint, 'callback' ), $path_pieces );
336 339
 	}
337 340
 
341
+	/**
342
+	 * @param integer $status_code
343
+	 */
338 344
 	function output_early( $status_code, $response = null, $content_type = 'application/json' ) {
339 345
 		$exit = $this->exit;
340 346
 		$this->exit = false;
@@ -543,11 +549,18 @@  discard block
 block discarded – undo
543 549
 		return json_encode( $data );
544 550
 	}
545 551
 
552
+	/**
553
+	 * @param string $needle
554
+	 */
546 555
 	function ends_with( $haystack, $needle ) {
547 556
 		return $needle === substr( $haystack, -strlen( $needle ) );
548 557
 	}
549 558
 
550 559
 	// Returns the site's blog_id in the WP.com ecosystem
560
+
561
+	/**
562
+	 * @return integer
563
+	 */
551 564
 	function get_blog_id_for_output() {
552 565
 		return $this->token_details['blog_id'];
553 566
 	}
@@ -570,6 +583,10 @@  discard block
 block discarded – undo
570 583
 	}
571 584
 
572 585
 	// Returns true if the specified blog ID is a restricted blog
586
+
587
+	/**
588
+	 * @param integer $blog_id
589
+	 */
573 590
 	function is_restricted_blog( $blog_id ) {
574 591
 		/**
575 592
 		 * Filters all REST API access and return a 403 unauthorized response for all Restricted blog IDs.
@@ -619,7 +636,7 @@  discard block
 block discarded – undo
619 636
 	/**
620 637
 	 * Counts the number of comments on a site, excluding certain comment types.
621 638
 	 *
622
-	 * @param $post_id int Post ID.
639
+	 * @param integer $post_id int Post ID.
623 640
 	 * @return array Array of counts, matching the output of https://developer.wordpress.org/reference/functions/get_comment_count/.
624 641
 	 */
625 642
 	public function wp_count_comments( $post_id ) {
Please login to merge, or discard this patch.