@@ -42,6 +42,9 @@ discard block |
||
| 42 | 42 | return array(); |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | + /** |
|
| 46 | + * @param string[] $actions_to_count |
|
| 47 | + */ |
|
| 45 | 48 | protected function count_actions( $action_names, $actions_to_count ) { |
| 46 | 49 | return count( array_intersect( $action_names, $actions_to_count ) ); |
| 47 | 50 | } |
@@ -50,6 +53,9 @@ discard block |
||
| 50 | 53 | return crc32( json_encode( $values ) ); |
| 51 | 54 | } |
| 52 | 55 | |
| 56 | + /** |
|
| 57 | + * @param integer $new_sum |
|
| 58 | + */ |
|
| 53 | 59 | protected function still_valid_checksum( $sums_to_check, $name, $new_sum ) { |
| 54 | 60 | if ( isset( $sums_to_check[ $name ] ) && $sums_to_check[ $name ] === $new_sum ) { |
| 55 | 61 | return true; |
@@ -58,6 +64,10 @@ discard block |
||
| 58 | 64 | return false; |
| 59 | 65 | } |
| 60 | 66 | |
| 67 | + /** |
|
| 68 | + * @param string $action_name |
|
| 69 | + * @param string $id_field |
|
| 70 | + */ |
|
| 61 | 71 | protected function enqueue_all_ids_as_action( $action_name, $table_name, $id_field, $where_sql ) { |
| 62 | 72 | global $wpdb; |
| 63 | 73 | |
@@ -84,6 +94,9 @@ discard block |
||
| 84 | 94 | return $chunk_count; |
| 85 | 95 | } |
| 86 | 96 | |
| 97 | + /** |
|
| 98 | + * @param string $meta_type |
|
| 99 | + */ |
|
| 87 | 100 | protected function get_metadata( $ids, $meta_type ) { |
| 88 | 101 | global $wpdb; |
| 89 | 102 | $table = _get_meta_table( $meta_type ); |
@@ -52,6 +52,9 @@ discard block |
||
| 52 | 52 | return (double) get_option( self::NEXT_SYNC_TIME_OPTION_NAME . '_' . $queue_name, 0 ); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | + /** |
|
| 56 | + * @param integer $time |
|
| 57 | + */ |
|
| 55 | 58 | public function set_next_sync_time( $time, $queue_name ) { |
| 56 | 59 | return update_option( self::NEXT_SYNC_TIME_OPTION_NAME . '_' . $queue_name, $time, true ); |
| 57 | 60 | } |
@@ -64,6 +67,9 @@ discard block |
||
| 64 | 67 | return $this->do_sync_and_set_delays( $this->sync_queue ); |
| 65 | 68 | } |
| 66 | 69 | |
| 70 | + /** |
|
| 71 | + * @param Jetpack_Sync_Queue $queue |
|
| 72 | + */ |
|
| 67 | 73 | public function do_sync_and_set_delays( $queue ) { |
| 68 | 74 | // don't sync if importing |
| 69 | 75 | if ( defined( 'WP_IMPORTING' ) && WP_IMPORTING ) { |
@@ -293,6 +299,10 @@ discard block |
||
| 293 | 299 | } |
| 294 | 300 | |
| 295 | 301 | // in seconds |
| 302 | + |
|
| 303 | + /** |
|
| 304 | + * @param double $seconds |
|
| 305 | + */ |
|
| 296 | 306 | function set_max_dequeue_time( $seconds ) { |
| 297 | 307 | $this->max_dequeue_time = $seconds; |
| 298 | 308 | } |
@@ -321,6 +321,9 @@ |
||
| 321 | 321 | return self::DEFAULT_SYNC_CRON_INTERVAL; |
| 322 | 322 | } |
| 323 | 323 | |
| 324 | + /** |
|
| 325 | + * @param string $hook |
|
| 326 | + */ |
|
| 324 | 327 | static function maybe_schedule_sync_cron( $schedule, $hook ) { |
| 325 | 328 | if ( ! $hook ) { |
| 326 | 329 | return; |
@@ -107,6 +107,9 @@ discard block |
||
| 107 | 107 | self::set_is_sending( null ); |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | + /** |
|
| 111 | + * @param boolean|null $is_importing |
|
| 112 | + */ |
|
| 110 | 113 | static function set_importing( $is_importing ) { |
| 111 | 114 | // set to NULL to revert to WP_IMPORTING, the standard behaviour |
| 112 | 115 | self::$is_importing = $is_importing; |
@@ -137,6 +140,9 @@ discard block |
||
| 137 | 140 | return (bool) self::$is_syncing; |
| 138 | 141 | } |
| 139 | 142 | |
| 143 | + /** |
|
| 144 | + * @param boolean|null $is_syncing |
|
| 145 | + */ |
|
| 140 | 146 | static function set_is_syncing( $is_syncing ) { |
| 141 | 147 | self::$is_syncing = $is_syncing; |
| 142 | 148 | } |
@@ -145,6 +151,9 @@ discard block |
||
| 145 | 151 | return (bool) self::$is_sending; |
| 146 | 152 | } |
| 147 | 153 | |
| 154 | + /** |
|
| 155 | + * @param boolean|null $is_sending |
|
| 156 | + */ |
|
| 148 | 157 | static function set_is_sending( $is_sending ) { |
| 149 | 158 | self::$is_sending = $is_sending; |
| 150 | 159 | } |
@@ -1,5 +1,9 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | class WPCOM_JSON_API_Update_Media_v1_2_Endpoint extends WPCOM_JSON_API_Update_Media_v1_1_Endpoint { |
| 3 | + |
|
| 4 | + /** |
|
| 5 | + * @param integer $media_id |
|
| 6 | + */ |
|
| 3 | 7 | private function update_by_attrs_parameter( $media_id, $attrs ) { |
| 4 | 8 | $insert = array(); |
| 5 | 9 | |
@@ -72,7 +76,7 @@ discard block |
||
| 72 | 76 | /** |
| 73 | 77 | * Store a new `snapshot` into the `revision_history` post metadata. |
| 74 | 78 | * |
| 75 | - * @param {Number} $media_id - media post ID |
|
| 79 | + * @param integer $media_id - media post ID |
|
| 76 | 80 | * @return {Boolean} `true` if the update action was successful. |
| 77 | 81 | */ |
| 78 | 82 | private function store_snapshot( $media_id, $filename ) { |
@@ -148,7 +152,7 @@ discard block |
||
| 148 | 152 | * Get the image from a remote url and then save it locally. |
| 149 | 153 | * |
| 150 | 154 | * @param {String} $url - image URL to save locally |
| 151 | - * @param {Number} $media_id - media post ID |
|
| 155 | + * @param integer $media_id - media post ID |
|
| 152 | 156 | * @return {Array|WP_Error} An array with information about the new file saved or a WP_Error is something went wrong. |
| 153 | 157 | */ |
| 154 | 158 | private function save_media_from_url( $url, $media_id ) { |
@@ -64,6 +64,7 @@ |
||
| 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 ) { |
@@ -227,6 +227,9 @@ |
||
| 227 | 227 | ); |
| 228 | 228 | } |
| 229 | 229 | |
| 230 | + /** |
|
| 231 | + * @param Jetpack_Sync_Queue $queue |
|
| 232 | + */ |
|
| 230 | 233 | protected function get_buffer( $queue, $number_of_items ) { |
| 231 | 234 | $start = time(); |
| 232 | 235 | $max_duration = 5; // this will try to get the buffer |
@@ -488,7 +488,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 ) ) { |
@@ -525,7 +525,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 ) ) { |