Completed
Push — branch-6.8 ( 8b69b8...ef0833 )
by Jeremy
315:00 queued 308:36
created
modules/wordads/wordads.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 * Convenience function for grabbing options from params->options
50 50
 	 *
51 51
 	 * @param  string $option the option to grab
52
-	 * @param  mixed  $default (optional)
52
+	 * @param  boolean  $default (optional)
53 53
 	 * @return option or $default if not set
54 54
 	 *
55 55
 	 * @since 4.5.0
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 	/**
495 495
 	 * Check the reasons to bail before we attempt to insert ads.
496 496
 	 *
497
-	 * @return true if we should bail (don't insert ads)
497
+	 * @return boolean if we should bail (don't insert ads)
498 498
 	 *
499 499
 	 * @since 4.5.0
500 500
 	 */
Please login to merge, or discard this patch.
modules/after-the-deadline/config-options.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -6,6 +6,9 @@  discard block
 block discarded – undo
6 6
 /*
7 7
  *   A convienence function to display the HTML for an AtD option
8 8
  */
9
+/**
10
+ * @param string $name
11
+ */
9 12
 function AtD_print_option( $name, $value, $options ) {
10 13
 	// Attribute-safe version of $name
11 14
 	$attr_name = sanitize_title( $name ); // Using sanitize_title since there's no comparable function for attributes
@@ -112,6 +115,9 @@  discard block
 block discarded – undo
112 115
 /*
113 116
  *  Returns an array of AtD user options specified by $name
114 117
  */
118
+/**
119
+ * @param string $name
120
+ */
115 121
 function AtD_get_options( $user_id, $name ) {
116 122
 	$options_raw = AtD_get_setting( $user_id, $name, 'single' );
117 123
 
@@ -130,6 +136,9 @@  discard block
 block discarded – undo
130 136
 /*
131 137
  *  Saves set of user options specified by $name from POST data
132 138
  */
139
+/**
140
+ * @param string $name
141
+ */
133 142
 function AtD_update_options( $user_id, $name ) {
134 143
 	/* We should probably run $_POST[name] through an esc_*() function... */
135 144
 	if ( isset( $_POST[ $name ] ) && is_array( $_POST[ $name ] ) ) {
Please login to merge, or discard this patch.
modules/carousel/jetpack-carousel.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -133,6 +133,9 @@  discard block
 block discarded – undo
133 133
 		exit;
134 134
 	}
135 135
 
136
+	/**
137
+	 * @param string $version
138
+	 */
136 139
 	function asset_version( $version ) {
137 140
 		/**
138 141
 		 * Filter the version string used when enqueuing Carousel assets.
@@ -707,6 +710,9 @@  discard block
 block discarded – undo
707 710
 		return ( 1 == $value ) ? 1 : 0;
708 711
 	}
709 712
 
713
+	/**
714
+	 * @param string $name
715
+	 */
710 716
 	function settings_checkbox( $name, $label_text, $extra_text = '', $default_to_checked = true ) {
711 717
 		if ( empty( $name ) ) {
712 718
 			return;
@@ -722,6 +728,9 @@  discard block
 block discarded – undo
722 728
 		echo '</fieldset>';
723 729
 	}
724 730
 
731
+	/**
732
+	 * @param string $name
733
+	 */
725 734
 	function settings_select( $name, $values, $extra_text = '' ) {
726 735
 		if ( empty( $name ) || ! is_array( $values ) || empty( $values ) ) {
727 736
 			return;
Please login to merge, or discard this patch.
modules/tiled-gallery/tiled-gallery/tiled-gallery-layout.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -9,6 +9,11 @@  discard block
 block discarded – undo
9 9
 	public $link;
10 10
 	public $grayscale;
11 11
 	public $columns;
12
+
13
+	/**
14
+	 * @param boolean $grayscale
15
+	 * @param integer $columns
16
+	 */
12 17
 	public function __construct( $attachments, $link, $grayscale, $columns ) {
13 18
 
14 19
 		$this->attachments           = $attachments;
@@ -39,6 +44,9 @@  discard block
 block discarded – undo
39 44
 		return $html;
40 45
 	}
41 46
 
47
+	/**
48
+	 * @param string $name
49
+	 */
42 50
 	private function template( $name, $context = null ) {
43 51
 		if ( ! in_array( $name, self::$templates ) ) {
44 52
 			return;
Please login to merge, or discard this patch.
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.