Code Duplication    Length = 3-3 lines in 2 locations

includes/payments/class-payments-query.php 2 locations

@@ 821-823 (lines=3) @@
818
		$group_by = '';
819
820
		// Set group by.
821
		if ( ! empty( $this->args['group_by'] ) ) {
822
			$group_by = "GROUP BY {$wpdb->posts}.{$this->args['group_by']}";
823
		}
824
825
		// Set offset.
826
		if (
@@ 848-850 (lines=3) @@
845
		if ( ! empty( $this->args['count'] ) ) {
846
			$fields = "COUNT({$wpdb->posts}.ID)";
847
848
			if ( ! empty( $this->args['group_by'] ) ) {
849
				$fields = "{$wpdb->posts}.{$this->args['group_by']}, {$fields}";
850
			}
851
		}
852
853
		// Date query.