Code Duplication    Length = 10-12 lines in 2 locations

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

@@ 55-64 (lines=10) @@
52
		return (int) ceil( $count / self::ARRAY_CHUNK_SIZE );
53
	}
54
55
	private function get_where_sql( $config ) {
56
		$where_sql = Jetpack_Sync_Settings::get_blacklisted_post_types_sql();
57
58
		// config is a list of post IDs to sync
59
		if ( is_array( $config ) ) {
60
			$where_sql   .= ' AND ID IN (' . implode( ',', array_map( 'intval', $config ) ) . ')';
61
		}
62
63
		return $where_sql;
64
	}
65
66
	function get_full_sync_actions() {
67
		return array( 'jetpack_full_sync_posts' );

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

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