Completed
Push — story-block/add/more-media-opt... ( 53fda1...42cfc5 )
by
unknown
107:17 queued 96:49
created
projects/plugins/jetpack/modules/custom-post-types/testimonial.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
 	 * Our [testimonial] shortcode.
526 526
 	 * Prints Testimonial data styled to look good on *any* theme.
527 527
 	 *
528
-	 * @return jetpack_testimonial_shortcode_html
528
+	 * @return string
529 529
 	 */
530 530
 	static function jetpack_testimonial_shortcode( $atts ) {
531 531
 		// Default attributes
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
 	/**
589 589
 	 * The Testimonial shortcode loop.
590 590
 	 *
591
-	 * @return html
591
+	 * @return string
592 592
 	 */
593 593
 	static function jetpack_testimonial_shortcode_html( $atts ) {
594 594
 		// Default query arguments
@@ -662,6 +662,7 @@  discard block
 block discarded – undo
662 662
 	/**
663 663
 	 * Individual testimonial class
664 664
 	 *
665
+	 * @param integer $testimonial_index_number
665 666
 	 * @return string
666 667
 	 */
667 668
 	static function get_testimonial_class( $testimonial_index_number, $columns, $image ) {
@@ -708,7 +709,7 @@  discard block
 block discarded – undo
708 709
 	/**
709 710
 	 * Display the featured image if it's available
710 711
 	 *
711
-	 * @return html
712
+	 * @return string|null
712 713
 	 */
713 714
 	static function get_testimonial_thumbnail_link( $post_id ) {
714 715
 		if ( has_post_thumbnail( $post_id ) ) {
Please login to merge, or discard this patch.
jetpack/modules/google-analytics/classes/wp-google-analytics-options.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -15,6 +15,10 @@
 block discarded – undo
15 15
 }
16 16
 
17 17
 class Jetpack_Google_Analytics_Options {
18
+
19
+	/**
20
+	 * @param string $option_name
21
+	 */
18 22
 	public static function get_option( $option_name, $default = false ) {
19 23
 		$o = get_option( 'jetpack_wga' );
20 24
 		return isset( $o[ $option_name ] ) ? $o[ $option_name ] : $default;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/infinite-scroll/infinity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1283,7 +1283,7 @@
 block discarded – undo
1283 1283
 	 * Returns an array of stock and custom taxonomy query vars
1284 1284
 	 *
1285 1285
 	 * @global $wp_taxonomies
1286
-	 * @return array
1286
+	 * @return string[]
1287 1287
 	 */
1288 1288
 	function get_taxonomy_vars() {
1289 1289
 		global $wp_taxonomies;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/latex.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
 	return latex_render( $latex, $fg, $bg, $s );
59 59
 }
60 60
 
61
+/**
62
+ * @param string $color
63
+ */
61 64
 function latex_get_default_color( $color, $default_color = 'ffffff' ) {
62 65
 	global $themecolors;
63 66
 	return isset($themecolors[$color]) ? $themecolors[$color] : $default_color;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/markdown/easy-markdown.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -504,6 +504,9 @@
 block discarded – undo
504 504
 		) );
505 505
 	}
506 506
 
507
+	/**
508
+	 * @param string $content
509
+	 */
507 510
 	protected function comment_hash( $content ) {
508 511
 		return 'c-' . substr( md5( $content ), 0, 8 );
509 512
 	}
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/notes.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
 		add_action( 'init', array( &$this, 'action_init' ) );
37 37
 	}
38 38
 
39
+	/**
40
+	 * @param string $file
41
+	 */
39 42
 	function wpcom_static_url($file) {
40 43
 		$i = hexdec( substr( md5( $file ), -1 ) ) % 2;
41 44
 		return 'https://s' . $i . '.wp.com' . $file;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/photon-cdn.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 	 *
82 82
 	 * @param String $plugin_slug plugin slug string.
83 83
 	 * @param String $current_version plugin version string.
84
-	 * @return null|bool
84
+	 * @return false|null
85 85
 	 */
86 86
 	public static function cdnize_plugin_assets( $plugin_slug, $current_version ) {
87 87
 		global $wp_scripts, $wp_styles;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/protect/blocked-login-page.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 	/**
36 36
 	 * Singleton implementation
37 37
 	 *
38
+	 * @param string|false $ip_address
38 39
 	 * @return object
39 40
 	 */
40 41
 	public static function instance( $ip_address ) {
@@ -348,6 +349,9 @@  discard block
 block discarded – undo
348 349
 		return $contents;
349 350
 	}
350 351
 
352
+	/**
353
+	 * @param string $message
354
+	 */
351 355
 	function display_page( $title, $message, $back_button = false, $recovery_form = false ) {
352 356
 
353 357
 		if ( ! headers_sent() ) {
Please login to merge, or discard this patch.
projects/plugins/jetpack/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.