Completed
Push — add/search-toggle-sort-control ( cad92c...011550 )
by
unknown
68:46 queued 61:10
created
modules/theme-tools.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
  * @access private
56 56
  * @param string $key
57 57
  * @param array $files
58
- * @return void
58
+ * @return WP_Error|null
59 59
  */
60 60
 function _jetpack_require_compat_file( $key, $files ) {
61 61
 	if ( ! is_string( $key ) ) {
Please login to merge, or discard this patch.
json-endpoints/class.wpcom-json-api-edit-media-v1-2-endpoint.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 	 * Update the media post grabbing the post values from
102 102
 	 * the `attrs` parameter
103 103
 	 *
104
-	 * @param  {Number} $media_id - post media ID
104
+	 * @param  integer $media_id - post media ID
105 105
 	 * @param  {Object} $attrs - `attrs` parameter sent from the client in the request body
106 106
 	 * @return
107 107
 	 */
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 	 * Save the given temporal file in a local folder.
203 203
 	 *
204 204
 	 * @param  {Array} $file_array
205
-	 * @param  {Number} $media_id
205
+	 * @param  integer $media_id
206 206
 	 * @return {Array|WP_Error} An array with information about the new file saved or a WP_Error is something went wrong.
207 207
 	 */
208 208
 	private function save_temporary_file( $file_array, $media_id ) {
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 	/**
278 278
 	 * Get the image from a remote url and then save it locally.
279 279
 	 *
280
-	 * @param  {Number} $media_id - media post ID
280
+	 * @param  integer $media_id - media post ID
281 281
 	 * @param  {String} $url - image URL to save locally
282 282
 	 * @return {Array|WP_Error} An array with information about the new file saved or a WP_Error is something went wrong.
283 283
 	 */
Please login to merge, or discard this patch.
modules/sharedaddy/sharing-service.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -505,6 +505,9 @@
 block discarded – undo
505 505
 	public $service = '';
506 506
 	public $total   = 0;
507 507
 
508
+	/**
509
+	 * @param integer $total
510
+	 */
508 511
 	public function __construct( $id, $total ) {
509 512
 		$services      = new Sharing_Service();
510 513
 		$this->id      = esc_html( $id );
Please login to merge, or discard this patch.
modules/memberships/class-jetpack-memberships.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
 	 * @param array $post_types - other post types.
173 173
 	 *
174 174
 	 * @see hook 'rest_api_allowed_post_types'
175
-	 * @return array
175
+	 * @return string[]
176 176
 	 */
177 177
 	public function allow_rest_api_types( $post_types ) {
178 178
 		$post_types[] = self::$post_type_plan;
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/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.