Completed
Push — update/eslint-version ( ae9b18...ac71bc )
by
unknown
29:03 queued 21:16
created
json-endpoints/class.wpcom-json-api-site-user-endpoint.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -64,6 +64,7 @@
 block discarded – undo
64 64
 	/**
65 65
 	 * Updates user data
66 66
 	 *
67
+	 * @param integer $user_id
67 68
 	 * @return (array)
68 69
 	 */
69 70
 	public function update_user( $user_id, $blog_id ) {
Please login to merge, or discard this patch.
modules/custom-post-types/portfolios.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
 	 * Our [portfolio] shortcode.
489 489
 	 * Prints Portfolio data styled to look good on *any* theme.
490 490
 	 *
491
-	 * @return portfolio_shortcode_html
491
+	 * @return string
492 492
 	 */
493 493
 	static function portfolio_shortcode( $atts ) {
494 494
 		// Default attributes
@@ -621,7 +621,7 @@  discard block
 block discarded – undo
621 621
 	 * The Portfolio shortcode loop.
622 622
 	 *
623 623
 	 * @todo add theme color styles
624
-	 * @return html
624
+	 * @return string
625 625
 	 */
626 626
 	static function portfolio_shortcode_html( $atts ) {
627 627
 
@@ -713,6 +713,7 @@  discard block
 block discarded – undo
713 713
 	/**
714 714
 	 * Individual project class
715 715
 	 *
716
+	 * @param integer $portfolio_index_number
716 717
 	 * @return string
717 718
 	 */
718 719
 	static function get_project_class( $portfolio_index_number, $columns ) {
@@ -820,7 +821,7 @@  discard block
 block discarded – undo
820 821
 	/**
821 822
 	 * Displays the author of the current portfolio project.
822 823
 	 *
823
-	 * @return html
824
+	 * @return string
824 825
 	 */
825 826
 	static function get_project_author() {
826 827
 		$html = '<div class="project-author">';
@@ -837,7 +838,7 @@  discard block
 block discarded – undo
837 838
 	/**
838 839
 	 * Display the featured image if it's available
839 840
 	 *
840
-	 * @return html
841
+	 * @return string|null
841 842
 	 */
842 843
 	static function get_portfolio_thumbnail_link( $post_id ) {
843 844
 		if ( has_post_thumbnail( $post_id ) ) {
Please login to merge, or discard this patch.
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.
modules/sso/class.jetpack-sso-helpers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
179 179
 	 * @param array $hosts
180 180
 	 * @param string $api_base
181 181
 	 *
182
-	 * @return array
182
+	 * @return string[]
183 183
 	 */
184 184
 	static function allowed_redirect_hosts( $hosts, $api_base = JETPACK__API_BASE ) {
185 185
 		if ( empty( $hosts ) ) {
Please login to merge, or discard this patch.
class.jetpack-options.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -141,6 +141,9 @@  discard block
 block discarded – undo
141 141
 		return $value;
142 142
 	}
143 143
 
144
+	/**
145
+	 * @param string $name
146
+	 */
144 147
 	private static function update_grouped_option( $group, $name, $value ) {
145 148
 		$options = get_option( self::$grouped_options[ $group ] );
146 149
 		if ( ! is_array( $options ) ) {
@@ -232,6 +235,9 @@  discard block
 block discarded – undo
232 235
 		return $result;
233 236
 	}
234 237
 
238
+	/**
239
+	 * @param string $name
240
+	 */
235 241
 	private static function get_grouped_option( $group, $name, $default ) {
236 242
 		$options = get_option( self::$grouped_options[ $group ] );
237 243
 		if ( is_array( $options ) && isset( $options[ $name ] ) ) {
Please login to merge, or discard this patch.
sync/class.jetpack-sync-listener.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -162,6 +162,9 @@
 block discarded – undo
162 162
 		$queue->add_all( $data_to_enqueue );
163 163
 	}
164 164
 
165
+	/**
166
+	 * @param Jetpack_Sync_Queue $queue
167
+	 */
165 168
 	function enqueue_action( $current_filter, $args, $queue ) {
166 169
 		/**
167 170
 		 * Modify or reject the data within an action before it is enqueued locally.
Please login to merge, or discard this patch.
sync/class.jetpack-sync-module-full-sync.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -234,6 +234,9 @@  discard block
 block discarded – undo
234 234
 		$listener->get_full_sync_queue()->reset();
235 235
 	}
236 236
 
237
+	/**
238
+	 * @param integer $default
239
+	 */
237 240
 	private function get_status_option( $option, $default = null ) {
238 241
 		$prefix = self::STATUS_OPTION_PREFIX;
239 242
 
@@ -270,6 +273,9 @@  discard block
 block discarded – undo
270 273
 		$this->queue_items_added( 1 );
271 274
 	}
272 275
 
276
+	/**
277
+	 * @param integer $item_count
278
+	 */
273 279
 	public function queue_items_added( $item_count ) {
274 280
 		// jpsq_item_added and jpsq_items_added both exec 1 db query, 
275 281
 		// so we ignore $item_count and treat it as always 1
Please login to merge, or discard this patch.
sync/class.jetpack-sync-modules.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
 		}
59 59
 	}
60 60
 
61
+	/**
62
+	 * @param string $module_name
63
+	 */
61 64
 	public static function get_module( $module_name ) {
62 65
 		foreach ( self::get_modules() as $module ) {
63 66
 			if ( $module->name() === $module_name ) {
Please login to merge, or discard this patch.
sync/class.jetpack-sync-queue.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@  discard block
 block discarded – undo
7 7
 	public $id;
8 8
 	public $items_with_ids;
9 9
 
10
+	/**
11
+	 * @param string $id
12
+	 */
10 13
 	public function __construct( $id, $items_with_ids ) {
11 14
 		$this->id             = $id;
12 15
 		$this->items_with_ids = $items_with_ids;
@@ -35,6 +38,9 @@  discard block
 block discarded – undo
35 38
 	public $id;
36 39
 	private $row_iterator;
37 40
 
41
+	/**
42
+	 * @param string $id
43
+	 */
38 44
 	function __construct( $id ) {
39 45
 		$this->id           = str_replace( '-', '_', $id ); // necessary to ensure we don't have ID collisions in the SQL
40 46
 		$this->row_iterator = 0;
@@ -312,6 +318,9 @@  discard block
 block discarded – undo
312 318
 		return get_transient( $this->get_checkout_transient_name() );
313 319
 	}
314 320
 
321
+	/**
322
+	 * @param string $checkout_id
323
+	 */
315 324
 	private function set_checkout_id( $checkout_id ) {
316 325
 		return set_transient( $this->get_checkout_transient_name(), $checkout_id, 5 * 60 ); // 5 minute timeout
317 326
 	}
Please login to merge, or discard this patch.