Completed
Push — add/crowdsignal-shortcode ( 65c42e...1b4a63 )
by Kuba
14:46 queued 06:22
created
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/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.