Completed
Push — update/delete-queue-full-sync ( 4dfbf3 )
by
unknown
06:01
created
packages/sync/src/modules/class-callables.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@
 block discarded – undo
226 226
 	 *
227 227
 	 * @access public
228 228
 	 *
229
-	 * @return array Full sync actions of this module.
229
+	 * @return string[] Full sync actions of this module.
230 230
 	 */
231 231
 	public function get_full_sync_actions() {
232 232
 		return array( 'jetpack_full_sync_callables' );
Please login to merge, or discard this patch.
packages/sync/src/modules/class-constants.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
 	 *
121 121
 	 * @access public
122 122
 	 *
123
-	 * @return array Full sync actions of this module.
123
+	 * @return string[] Full sync actions of this module.
124 124
 	 */
125 125
 	public function get_full_sync_actions() {
126 126
 		return array( 'jetpack_full_sync_constants' );
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
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 *
184 184
 	 * @access public
185 185
 	 *
186
-	 * @param array $config Full sync configuration for this sync module.
186
+	 * @param string|boolean $config Full sync configuration for this sync module.
187 187
 	 * @return string WHERE SQL clause, or `null` if no comments are specified in the module config.
188 188
 	 */
189 189
 	public function get_where_sql( $config ) {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 	 *
203 203
 	 * @access public
204 204
 	 *
205
-	 * @return array Full sync actions of this module.
205
+	 * @return string[] Full sync actions of this module.
206 206
 	 */
207 207
 	public function get_full_sync_actions() {
208 208
 		return array( 'jetpack_full_sync_posts' );
Please login to merge, or discard this patch.
packages/sync/src/modules/class-themes.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -494,7 +494,7 @@
 block discarded – undo
494 494
 	 *
495 495
 	 * @access public
496 496
 	 *
497
-	 * @return array Full sync actions of this module.
497
+	 * @return string[] Full sync actions of this module.
498 498
 	 */
499 499
 	public function get_full_sync_actions() {
500 500
 		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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 	 *
195 195
 	 * @access public
196 196
 	 *
197
-	 * @param \WP_User $user User object.
197
+	 * @param \WP_User|null $user User object.
198 198
 	 * @return \WP_User Expanded user object.
199 199
 	 */
200 200
 	public function expand_user( $user ) {
@@ -627,7 +627,7 @@  discard block
 block discarded – undo
627 627
 	 *
628 628
 	 * @access public
629 629
 	 *
630
-	 * @return array Full sync actions of this module.
630
+	 * @return string[] Full sync actions of this module.
631 631
 	 */
632 632
 	public function get_full_sync_actions() {
633 633
 		return array( 'jetpack_full_sync_users' );
Please login to merge, or discard this patch.