Completed
Push — branch-7.0 ( e95d6b...f44b08 )
by Jeremy
44:56 queued 38:02
created
class.jetpack-post-images.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -162,6 +162,7 @@  discard block
 block discarded – undo
162 162
 	/**
163 163
 	 * Get attachment images for a specified post and return them. Also make sure
164 164
 	 * their dimensions are at or above a required minimum.
165
+	 * @param integer $post_id
165 166
 	 */
166 167
 	static function from_attachment( $post_id, $width = 200, $height = 200 ) {
167 168
 		$images = array();
@@ -656,7 +657,6 @@  discard block
 block discarded – undo
656 657
 	 * resized and cropped image.
657 658
 	 *
658 659
 	 * @param  string $src
659
-	 * @param  int    $dimension
660 660
 	 * @return string            Transformed image URL
661 661
 	 */
662 662
 	static function fit_image_url( $src, $width, $height ) {
@@ -703,7 +703,7 @@  discard block
 block discarded – undo
703 703
 	 *
704 704
 	 * @param mixed $html_or_id The HTML string to parse for images, or a post id.
705 705
 	 *
706
-	 * @return array $html_info {
706
+	 * @return integer $html_info {
707 707
 	 * @type string $html     Post content.
708 708
 	 * @type string $post_url Post URL.
709 709
 	 * }
Please login to merge, or discard this patch.
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.
@@ -508,6 +511,9 @@  discard block
 block discarded – undo
508 511
 		return $attr;
509 512
 	}
510 513
 
514
+	/**
515
+	 * @param string $html
516
+	 */
511 517
 	function add_data_to_container( $html ) {
512 518
 		global $post;
513 519
 		if ( Jetpack_AMP_Support::is_amp_request() ) {
@@ -751,6 +757,9 @@  discard block
 block discarded – undo
751 757
 		return ( 1 == $value ) ? 1 : 0;
752 758
 	}
753 759
 
760
+	/**
761
+	 * @param string $name
762
+	 */
754 763
 	function settings_checkbox( $name, $label_text, $extra_text = '', $default_to_checked = true ) {
755 764
 		if ( empty( $name ) ) {
756 765
 			return;
@@ -766,6 +775,9 @@  discard block
 block discarded – undo
766 775
 		echo '</fieldset>';
767 776
 	}
768 777
 
778
+	/**
779
+	 * @param string $name
780
+	 */
769 781
 	function settings_select( $name, $values, $extra_text = '' ) {
770 782
 		if ( empty( $name ) || ! is_array( $values ) || empty( $values ) ) {
771 783
 			return;
Please login to merge, or discard this patch.
modules/publicize/ui.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
 	 *
442 442
 	 * @param array $connections_data
443 443
 	 *
444
-	 * @return array {
444
+	 * @return string {
445 445
 	 *     Array of content for generating connection form.
446 446
 	 *
447 447
 	 *     @type string HTML content of form
@@ -544,6 +544,9 @@  discard block
 block discarded – undo
544 544
 		return ob_get_clean();
545 545
 	}
546 546
 
547
+	/**
548
+	 * @return string
549
+	 */
547 550
 	private function google_plus_shut_down_notice() {
548 551
 		return wp_kses(
549 552
 			sprintf(
Please login to merge, or discard this patch.