Completed
Push — update/google-site-verificatio... ( f2b198...920ab9 )
by
unknown
18:16 queued 11:17
created
modules/shortcodes/class.filter-embedded-html-objects.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -112,6 +112,9 @@  discard block
 block discarded – undo
112 112
 		return $html;
113 113
 	}
114 114
 
115
+	/**
116
+	 * @param string $regexp
117
+	 */
115 118
 	public static function regexp_entities( $regexp ) {
116 119
 		return preg_replace(
117 120
 			'/\[\^&([^\]]+)\]\*\+/',
@@ -150,6 +153,9 @@  discard block
 block discarded – undo
150 153
 		return self::dispatch( $matches );
151 154
 	}
152 155
 
156
+	/**
157
+	 * @param string[] $matches
158
+	 */
153 159
 	static function dispatch( $matches ) {
154 160
 		$html  = preg_replace( '%&#0*58;//%', '://', $matches[0] );
155 161
 		$attrs = self::get_attrs( $html );
Please login to merge, or discard this patch.
modules/shortcodes/polldaddy.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
 			add_action( 'infinite_scroll_render', array( $this, 'polldaddy_shortcode_infinite' ), 11 );
23 23
 		}
24 24
 
25
+		/**
26
+		 * @param string $survey_link
27
+		 */
25 28
 		private function get_async_code( array $settings, $survey_link ) {
26 29
 			$embed_src     = 'http://i0.poll.fm/survey.js';
27 30
 			$embed_src_ssl = 'https://polldaddy.com/survey.js';
Please login to merge, or discard this patch.
modules/widgets/goodreads.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@
 block discarded – undo
90 90
 		echo $args['after_widget'];
91 91
 	}
92 92
 
93
+	/**
94
+	 * @param string $user_id
95
+	 */
93 96
 	function goodreads_user_id_exists( $user_id ) {
94 97
 		$url      = "https://www.goodreads.com/user/show/$user_id/";
95 98
 		$response = wp_remote_head(
Please login to merge, or discard this patch.
modules/widgets/simple-payments.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
 		 * Returns the number of decimal places on string representing a price.
277 277
 		 *
278 278
 		 * @param string $number Price to check.
279
-		 * @return number number of decimal places.
279
+		 * @return null|integer number of decimal places.
280 280
 		 */
281 281
 		private function get_decimal_places( $number ) {
282 282
 			$parts = explode( '.', $number );
@@ -377,8 +377,7 @@  discard block
 block discarded – undo
377 377
 		/**
378 378
 		 * Gets the latests field value from either the old instance or the new instance.
379 379
 		 *
380
-		 * @param array $mixed Array of values for the new form instance.
381
-		 * @param array $mixed Array of values for the old form instance.
380
+		 * @param string $field
382 381
 		 * @return mixed $mixed Field value.
383 382
 		 */
384 383
 		private function get_latest_field_value( $new_instance, $old_instance, $field ) {
@@ -392,6 +391,7 @@  discard block
 block discarded – undo
392 391
 		 * it returns the default values.
393 392
 		 *
394 393
 		 * @param int Product Post ID.
394
+		 * @param integer $product_post_id
395 395
 		 * @return array $fields Product Fields from the Product Post.
396 396
 		 */
397 397
 		private function get_product_from_post( $product_post_id ) {
Please login to merge, or discard this patch.
modules/wordads/php/api.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	/**
69 69
 	 * Returns status of WordAds approval.
70 70
 	 *
71
-	 * @return boolean true if site is WordAds approved
71
+	 * @return string true if site is WordAds approved
72 72
 	 *
73 73
 	 * @since 4.5.0
74 74
 	 */
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	/**
84 84
 	 * Returns status of WordAds active.
85 85
 	 *
86
-	 * @return boolean true if ads are active on site
86
+	 * @return string true if ads are active on site
87 87
 	 *
88 88
 	 * @since 4.5.0
89 89
 	 */
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	/**
99 99
 	 * Returns status of WordAds house ads.
100 100
 	 *
101
-	 * @return boolean true if WP.com house ads should be shown
101
+	 * @return string true if WP.com house ads should be shown
102 102
 	 *
103 103
 	 * @since 4.5.0
104 104
 	 */
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	/**
115 115
 	 * Returns whether or not this site is safe to run ads on.
116 116
 	 *
117
-	 * @return boolean true if ads shown not be shown on this site.
117
+	 * @return string true if ads shown not be shown on this site.
118 118
 	 *
119 119
 	 * @since 6.5.0
120 120
 	 */
Please login to merge, or discard this patch.
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.