@@ -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; |
@@ -52,7 +52,7 @@ |
||
52 | 52 | /** |
53 | 53 | * Record an event. |
54 | 54 | * |
55 | - * @param mixed $event Event object to send to Tracks. An array will be cast to object. Required. |
|
55 | + * @param Jetpack_Tracks_Event $event Event object to send to Tracks. An array will be cast to object. Required. |
|
56 | 56 | * Properties are included directly in the pixel query string after light validation. |
57 | 57 | * @return mixed True on success, WP_Error on failure |
58 | 58 | */ |
@@ -44,7 +44,7 @@ |
||
44 | 44 | * @param array $attr The attributes of the shortcode. |
45 | 45 | * @param array $old_attr Optional array of attributes from the old shortcode format. |
46 | 46 | * |
47 | - * @return array Width and height. |
|
47 | + * @return integer[] Width and height. |
|
48 | 48 | */ |
49 | 49 | function jetpack_shortcode_get_vimeo_dimensions( $attr, $old_attr = array() ) { |
50 | 50 | global $content_width; |