@@ -76,6 +76,9 @@ discard block |
||
76 | 76 | return (float) get_option( self::NEXT_SYNC_TIME_OPTION_NAME . '_' . $queue_name, 0 ); |
77 | 77 | } |
78 | 78 | |
79 | + /** |
|
80 | + * @param integer $time |
|
81 | + */ |
|
79 | 82 | public function set_next_sync_time( $time, $queue_name ) { |
80 | 83 | return update_option( self::NEXT_SYNC_TIME_OPTION_NAME . '_' . $queue_name, $time, true ); |
81 | 84 | } |
@@ -106,6 +109,9 @@ discard block |
||
106 | 109 | return $this->do_sync_and_set_delays( $this->sync_queue ); |
107 | 110 | } |
108 | 111 | |
112 | + /** |
|
113 | + * @param Jetpack_Sync_Queue $queue |
|
114 | + */ |
|
109 | 115 | public function do_sync_and_set_delays( $queue ) { |
110 | 116 | // don't sync if importing |
111 | 117 | if ( defined( 'WP_IMPORTING' ) && WP_IMPORTING ) { |
@@ -354,6 +360,10 @@ discard block |
||
354 | 360 | } |
355 | 361 | |
356 | 362 | // in seconds |
363 | + |
|
364 | + /** |
|
365 | + * @param double $seconds |
|
366 | + */ |
|
357 | 367 | function set_max_dequeue_time( $seconds ) { |
358 | 368 | $this->max_dequeue_time = $seconds; |
359 | 369 | } |
@@ -135,6 +135,9 @@ discard block |
||
135 | 135 | self::set_is_sending( null ); |
136 | 136 | } |
137 | 137 | |
138 | + /** |
|
139 | + * @param boolean|null $is_importing |
|
140 | + */ |
|
138 | 141 | static function set_importing( $is_importing ) { |
139 | 142 | // set to NULL to revert to WP_IMPORTING, the standard behavior |
140 | 143 | self::$is_importing = $is_importing; |
@@ -165,6 +168,9 @@ discard block |
||
165 | 168 | return (bool) self::$is_syncing || ( defined( 'REST_API_REQUEST' ) && REST_API_REQUEST ); |
166 | 169 | } |
167 | 170 | |
171 | + /** |
|
172 | + * @param boolean|null $is_syncing |
|
173 | + */ |
|
168 | 174 | static function set_is_syncing( $is_syncing ) { |
169 | 175 | self::$is_syncing = $is_syncing; |
170 | 176 | } |
@@ -173,6 +179,9 @@ discard block |
||
173 | 179 | return (bool) self::$is_sending; |
174 | 180 | } |
175 | 181 | |
182 | + /** |
|
183 | + * @param boolean|null $is_sending |
|
184 | + */ |
|
176 | 185 | static function set_is_sending( $is_sending ) { |
177 | 186 | self::$is_sending = $is_sending; |
178 | 187 | } |
@@ -447,6 +447,10 @@ discard block |
||
447 | 447 | } |
448 | 448 | |
449 | 449 | // functions |
450 | + |
|
451 | + /** |
|
452 | + * @param string $name |
|
453 | + */ |
|
450 | 454 | public function get_callable( $name ) { |
451 | 455 | $value = get_option( 'jetpack_' . $name ); |
452 | 456 | |
@@ -738,6 +742,9 @@ discard block |
||
738 | 742 | return $histogram; |
739 | 743 | } |
740 | 744 | |
745 | + /** |
|
746 | + * @param string|null $id_column |
|
747 | + */ |
|
741 | 748 | private function table_checksum( $table, $columns, $id_column, $where_sql = '1=1', $min_id = null, $max_id = null, $strip_non_ascii = true, $salt = '' ) { |
742 | 749 | global $wpdb; |
743 | 750 | |
@@ -791,6 +798,9 @@ discard block |
||
791 | 798 | return 'sum'; |
792 | 799 | } |
793 | 800 | |
801 | + /** |
|
802 | + * @param string $where_sql |
|
803 | + */ |
|
794 | 804 | private function meta_count( $table, $where_sql, $min_id, $max_id ) { |
795 | 805 | global $wpdb; |
796 | 806 |