Code Duplication    Length = 4-4 lines in 2 locations

src/wp-includes/class-wp-site-query.php 2 locations

@@ 660-663 (lines=4) @@
657
		$parsed = false;
658
659
		switch ( $orderby ) {
660
			case 'site__in':
661
				$site__in = implode( ',', array_map( 'absint', $this->query_vars['site__in'] ) );
662
				$parsed = "FIELD( {$wpdb->blogs}.blog_id, $site__in )";
663
				break;
664
			case 'network__in':
665
				$network__in = implode( ',', array_map( 'absint', $this->query_vars['network__in'] ) );
666
				$parsed = "FIELD( {$wpdb->blogs}.site_id, $network__in )";
@@ 664-667 (lines=4) @@
661
				$site__in = implode( ',', array_map( 'absint', $this->query_vars['site__in'] ) );
662
				$parsed = "FIELD( {$wpdb->blogs}.blog_id, $site__in )";
663
				break;
664
			case 'network__in':
665
				$network__in = implode( ',', array_map( 'absint', $this->query_vars['network__in'] ) );
666
				$parsed = "FIELD( {$wpdb->blogs}.site_id, $network__in )";
667
				break;
668
			case 'domain':
669
			case 'last_updated':
670
			case 'path':