@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | * @todo Use $wpdb->prepare for the SQL query. |
202 | 202 | * |
203 | 203 | * @param array $config Full sync configuration for this sync module. |
204 | - * @return array Number of items yet to be enqueued. |
|
204 | + * @return integer Number of items yet to be enqueued. |
|
205 | 205 | */ |
206 | 206 | public function estimate_full_sync_actions( $config ) { |
207 | 207 | global $wpdb; |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | * |
238 | 238 | * @access public |
239 | 239 | * |
240 | - * @return array Full sync actions of this module. |
|
240 | + * @return string[] Full sync actions of this module. |
|
241 | 241 | */ |
242 | 242 | public function get_full_sync_actions() { |
243 | 243 | return array( 'jetpack_full_sync_posts' ); |
@@ -162,7 +162,7 @@ |
||
162 | 162 | * |
163 | 163 | * @access public |
164 | 164 | * |
165 | - * @return array Full sync actions of this module. |
|
165 | + * @return string[] Full sync actions of this module. |
|
166 | 166 | */ |
167 | 167 | public function get_full_sync_actions() { |
168 | 168 | return array( 'jetpack_full_sync_terms' ); |
@@ -502,7 +502,7 @@ discard block |
||
502 | 502 | * @access public |
503 | 503 | * |
504 | 504 | * @param array $config Full sync configuration for this sync module. |
505 | - * @return array Number of items yet to be enqueued. |
|
505 | + * @return integer Number of items yet to be enqueued. |
|
506 | 506 | */ |
507 | 507 | public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
508 | 508 | return 1; |
@@ -522,7 +522,7 @@ discard block |
||
522 | 522 | * |
523 | 523 | * @access public |
524 | 524 | * |
525 | - * @return array Full sync actions of this module. |
|
525 | + * @return string[] Full sync actions of this module. |
|
526 | 526 | */ |
527 | 527 | public function get_full_sync_actions() { |
528 | 528 | return array( 'jetpack_full_sync_theme_data' ); |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | * |
184 | 184 | * @access public |
185 | 185 | * |
186 | - * @param \WP_User $user User object. |
|
186 | + * @param \WP_User|null $user User object. |
|
187 | 187 | * @return \WP_User Expanded user object. |
188 | 188 | */ |
189 | 189 | public function expand_user( $user ) { |
@@ -614,7 +614,7 @@ discard block |
||
614 | 614 | * @todo Refactor to prepare the SQL query before executing it. |
615 | 615 | * |
616 | 616 | * @param array $config Full sync configuration for this sync module. |
617 | - * @return array Number of items yet to be enqueued. |
|
617 | + * @return integer Number of items yet to be enqueued. |
|
618 | 618 | */ |
619 | 619 | public function estimate_full_sync_actions( $config ) { |
620 | 620 | global $wpdb; |
@@ -658,7 +658,7 @@ discard block |
||
658 | 658 | * |
659 | 659 | * @access public |
660 | 660 | * |
661 | - * @return array Full sync actions of this module. |
|
661 | + * @return string[] Full sync actions of this module. |
|
662 | 662 | */ |
663 | 663 | public function get_full_sync_actions() { |
664 | 664 | return array( 'jetpack_full_sync_users' ); |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | * |
151 | 151 | * @access public |
152 | 152 | * |
153 | - * @return array Full sync actions of this module. |
|
153 | + * @return string[] Full sync actions of this module. |
|
154 | 154 | */ |
155 | 155 | public function get_full_sync_actions() { |
156 | 156 | return array( 'jetpack_full_sync_woocommerce_order_items' ); |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | * @todo Refactor the SQL query to use $wpdb->prepare(). |
247 | 247 | * |
248 | 248 | * @param array $config Full sync configuration for this sync module. |
249 | - * @return array Number of items yet to be enqueued. |
|
249 | + * @return integer Number of items yet to be enqueued. |
|
250 | 250 | */ |
251 | 251 | public function estimate_full_sync_actions( $config ) { |
252 | 252 | global $wpdb; |
@@ -734,6 +734,9 @@ |
||
734 | 734 | return floor( $max_exec_time / 3 ); |
735 | 735 | } |
736 | 736 | |
737 | + /** |
|
738 | + * @param string $setting |
|
739 | + */ |
|
737 | 740 | static function get_default_setting( $setting ) { |
738 | 741 | $default_name = "default_$setting"; // e.g. default_dequeue_max_bytes |
739 | 742 | return self::$$default_name; |
@@ -64,7 +64,7 @@ |
||
64 | 64 | * |
65 | 65 | * @access public |
66 | 66 | * |
67 | - * @param Automattic\Jetpack\Sync\Codec_Interface $codec Codec instance. |
|
67 | + * @param Codec_Interface $codec Codec instance. |
|
68 | 68 | */ |
69 | 69 | public function set_codec( Codec_Interface $codec ) { |
70 | 70 | $this->codec = $codec; |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | * @access public |
337 | 337 | * @static |
338 | 338 | * |
339 | - * @return bool|null False if sync is not allowed. |
|
339 | + * @return false|null False if sync is not allowed. |
|
340 | 340 | */ |
341 | 341 | public static function do_initial_sync() { |
342 | 342 | // Lets not sync if we are not suppose to. |
@@ -506,7 +506,7 @@ discard block |
||
506 | 506 | * @static |
507 | 507 | * |
508 | 508 | * @param array $sync_modules The list of sync modules declared prior to this filter. |
509 | - * @return array A list of sync modules that now includes Woo's modules. |
|
509 | + * @return string[] A list of sync modules that now includes Woo's modules. |
|
510 | 510 | */ |
511 | 511 | public static function add_woocommerce_sync_module( $sync_modules ) { |
512 | 512 | $sync_modules[] = 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce'; |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | * @static |
534 | 534 | * |
535 | 535 | * @param array $sync_modules The list of sync modules declared prior to this filer. |
536 | - * @return array A list of sync modules that now includes WP Super Cache's modules. |
|
536 | + * @return string[] A list of sync modules that now includes WP Super Cache's modules. |
|
537 | 537 | */ |
538 | 538 | public static function add_wp_super_cache_sync_module( $sync_modules ) { |
539 | 539 | $sync_modules[] = 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache'; |
@@ -295,7 +295,7 @@ |
||
295 | 295 | * @access private |
296 | 296 | * |
297 | 297 | * @param string $status Comment status. |
298 | - * @return string|bool New comment_approved value, false if the status doesn't affect it. |
|
298 | + * @return string|false New comment_approved value, false if the status doesn't affect it. |
|
299 | 299 | */ |
300 | 300 | private function comment_status_to_approval_value( $status ) { |
301 | 301 | switch ( $status ) { |