Completed
Push — update/repeat-visitor-keywords ( 78f1d6 )
by
unknown
06:51
created
_inc/lib/class.media.php 1 patch
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	/**
87 87
 	 * Return an array of allowed mime_type items used to upload a media file.
88 88
 	 * 	
89
-	 * @return array mime_type array
89
+	 * @return string[] mime_type array
90 90
 	 */
91 91
 	static function get_allowed_mime_types( $default_mime_types ) {
92 92
 		return array_unique( array_merge( $default_mime_types, array(
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 	 * @param  object $media_item - media post object
254 254
 	 * @param  file $file - file recently added
255 255
 	 * @param  bool $has_original_media - condition is the original media has been already added
256
-	 * @return bool `true` if the item has been added. Otherwise `false`.
256
+	 * @return false|null `true` if the item has been added. Otherwise `false`.
257 257
 	 */
258 258
 	public static function register_revision( $media_item, $file, $has_original_media ) {
259 259
 		if ( is_wp_error( $file ) || ! $has_original_media ) {
@@ -281,6 +281,9 @@  discard block
 block discarded – undo
281 281
 		return $original;
282 282
 	}
283 283
 
284
+	/**
285
+	 * @param string $pathname
286
+	 */
284 287
 	public static function delete_file( $pathname ) {
285 288
 		if ( ! file_exists( $pathname ) || ! is_file( $pathname ) ) {
286 289
 			// let's touch a fake file to try to `really` remove the media file
@@ -296,7 +299,7 @@  discard block
 block discarded – undo
296 299
 	 * 
297 300
 	 * @param  number $media_id - media post ID
298 301
 	 * @param  string $filename - basename of the file ( name-of-file.ext )
299
-	 * @return bool `true` is the file has been removed, `false` if not.
302
+	 * @return boolean|null `true` is the file has been removed, `false` if not.
300 303
 	 */
301 304
 	private static function delete_media_history_file( $media_id, $filename ) {
302 305
 		$attached_path = get_attached_file( $media_id );
@@ -366,6 +369,7 @@  discard block
 block discarded – undo
366 369
 	 * 
367 370
 	 * @param  number $media_id - media post ID
368 371
 	 * @param  number [$limit] - maximun amount of items. 20 as default.
372
+	 * @param integer $limit
369 373
 	 * @return array items removed from `revision_history`
370 374
 	 */
371 375
 	public static function limit_revision_history( $media_id, $limit = null) {
Please login to merge, or discard this patch.
modules/post-by-email.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
 	/**
176 176
 	 * Back end function to abstract the xmlrpc function calls to wpcom.
177 177
 	 *
178
-	 * @param $endpoint
178
+	 * @param string $endpoint
179 179
 	 * @param $error_message
180 180
 	 */
181 181
 	function __process_ajax_proxy_request( $endpoint, $error_message ) { // phpcs:ignore
Please login to merge, or discard this patch.
_inc/lib/tonesque.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 	 * Construct object from image.
88 88
 	 *
89 89
 	 * @param optional $type (hex, rgb, hsv)
90
-	 * @return color as a string formatted as $type
90
+	 * @return false|string as a string formatted as $type
91 91
 	 *
92 92
  	 */
93 93
 	function color( $type = 'hex' ) {
Please login to merge, or discard this patch.
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.
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/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.