Completed
Push — try/capabilities ( 843852...1eedd1 )
by
unknown
16:26 queued 10:05
created
packages/sync/src/modules/class-comments.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
 	 *
221 221
 	 * @access public
222 222
 	 *
223
-	 * @return array Full sync actions of this module.
223
+	 * @return string[] Full sync actions of this module.
224 224
 	 */
225 225
 	public function get_full_sync_actions() {
226 226
 		return array( 'jetpack_full_sync_comments' );
Please login to merge, or discard this patch.
packages/sync/src/modules/class-constants.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 * @access public
138 138
 	 *
139 139
 	 * @param array $config Full sync configuration for this sync module.
140
-	 * @return array Number of items yet to be enqueued.
140
+	 * @return integer Number of items yet to be enqueued.
141 141
 	 */
142 142
 	public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
143 143
 		return 1;
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 	 *
149 149
 	 * @access public
150 150
 	 *
151
-	 * @return array Full sync actions of this module.
151
+	 * @return string[] Full sync actions of this module.
152 152
 	 */
153 153
 	public function get_full_sync_actions() {
154 154
 		return array( 'jetpack_full_sync_constants' );
Please login to merge, or discard this patch.
packages/sync/src/modules/class-full-sync.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -539,7 +539,7 @@
 block discarded – undo
539 539
 	 * @access private
540 540
 	 *
541 541
 	 * @param string $name    Name of the option.
542
-	 * @param mixed  $default Default value of the option.
542
+	 * @param integer  $default Default value of the option.
543 543
 	 * @return mixed Option value.
544 544
 	 */
545 545
 	private function get_status_option( $name, $default = null ) {
Please login to merge, or discard this patch.
packages/sync/src/modules/class-module.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 *
54 54
 	 * @param string $object_type Type of the sync object.
55 55
 	 * @param int    $id          ID of the sync object.
56
-	 * @return mixed Object, or false if the object is invalid.
56
+	 * @return boolean Object, or false if the object is invalid.
57 57
 	 */
58 58
 	public function get_object_by_id( $object_type, $id ) {
59 59
 		return false;
@@ -152,8 +152,8 @@  discard block
 block discarded – undo
152 152
 	 * @access protected
153 153
 	 *
154 154
 	 * @param array $action_names     Action names we're interested in.
155
-	 * @param array $actions_to_count Unfiltered list of actions we want to count.
156
-	 * @return array Number of actions that we're interested in.
155
+	 * @param string[] $actions_to_count Unfiltered list of actions we want to count.
156
+	 * @return integer Number of actions that we're interested in.
157 157
 	 */
158 158
 	protected function count_actions( $action_names, $actions_to_count ) {
159 159
 		return count( array_intersect( $action_names, $actions_to_count ) );
Please login to merge, or discard this patch.
packages/sync/src/modules/class-posts.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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' );
Please login to merge, or discard this patch.
packages/sync/src/modules/class-term-relationships.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
 	 *
125 125
 	 * @access public
126 126
 	 *
127
-	 * @return array Full sync actions of this module.
127
+	 * @return string[] Full sync actions of this module.
128 128
 	 */
129 129
 	public function get_full_sync_actions() {
130 130
 		return array( 'jetpack_full_sync_term_relationships' );
Please login to merge, or discard this patch.
packages/sync/src/modules/class-themes.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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' );
Please login to merge, or discard this patch.
packages/sync/src/modules/class-users.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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' );
Please login to merge, or discard this patch.
packages/sync/src/modules/class-woocommerce.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.