Code Duplication    Length = 10-12 lines in 2 locations

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' );

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

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