Completed
Push — renovate/mapbox-gl-0.x ( e1b5df...b1dfce )
by
unknown
61:50 queued 55:49
created
packages/sync/src/modules/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.
packages/sync/src/Defaults.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -734,6 +734,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
packages/sync/src/Server.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
packages/sync/src/Actions.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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';
Please login to merge, or discard this patch.