Code Duplication    Length = 10-12 lines in 2 locations

sync/class.jetpack-sync-module-users.php 1 location

@@ 198-209 (lines=12) @@
195
		return (int) ceil( $count / self::ARRAY_CHUNK_SIZE );
196
	}
197
198
	private function get_where_sql( $config ) {
199
		global $wpdb;
200
201
		$query = "meta_key = '{$wpdb->prefix}capabilities'";
202
		
203
		// config is a list of user IDs to sync
204
		if ( is_array( $config ) ) {
205
			$query .= ' AND user_id IN (' . implode( ',', array_map( 'intval', $config ) ) . ')';
206
		}
207
208
		return $query;
209
	}
210
211
	function get_full_sync_actions() {
212
		return array( 'jetpack_full_sync_users' );

sync/class.jetpack-sync-module-posts.php 1 location

@@ 69-78 (lines=10) @@
66
		return (int) ceil( $count / self::ARRAY_CHUNK_SIZE );
67
	}
68
69
	private function get_where_sql( $config ) {
70
		$where_sql = Jetpack_Sync_Settings::get_blacklisted_post_types_sql();
71
72
		// config is a list of post IDs to sync
73
		if ( is_array( $config ) ) {
74
			$where_sql   .= ' AND ID IN (' . implode( ',', array_map( 'intval', $config ) ) . ')';
75
		}
76
77
		return $where_sql;
78
	}
79
80
	function get_full_sync_actions() {
81
		return array( 'jetpack_full_sync_posts' );