Completed
Pull Request — master (#11060)
by Bernhard
55:18 queued 47:22
created
modules/carousel/jetpack-carousel.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -135,6 +135,9 @@  discard block
 block discarded – undo
135 135
 		exit;
136 136
 	}
137 137
 
138
+	/**
139
+	 * @param string $version
140
+	 */
138 141
 	function asset_version( $version ) {
139 142
 		/**
140 143
 		 * Filter the version string used when enqueuing Carousel assets.
@@ -489,6 +492,9 @@  discard block
 block discarded – undo
489 492
 		return $attr;
490 493
 	}
491 494
 
495
+	/**
496
+	 * @param string $html
497
+	 */
492 498
 	function add_data_to_container( $html ) {
493 499
 		global $post;
494 500
 
@@ -729,6 +735,9 @@  discard block
 block discarded – undo
729 735
 		return ( 1 == $value ) ? 1 : 0;
730 736
 	}
731 737
 
738
+	/**
739
+	 * @param string $name
740
+	 */
732 741
 	function settings_checkbox( $name, $label_text, $extra_text = '', $default_to_checked = true ) {
733 742
 		if ( empty( $name ) ) {
734 743
 			return;
@@ -744,6 +753,9 @@  discard block
 block discarded – undo
744 753
 		echo '</fieldset>';
745 754
 	}
746 755
 
756
+	/**
757
+	 * @param string $name
758
+	 */
747 759
 	function settings_select( $name, $values, $extra_text = '' ) {
748 760
 		if ( empty( $name ) || ! is_array( $values ) || empty( $values ) ) {
749 761
 			return;
Please login to merge, or discard this patch.