Code Duplication    Length = 3-5 lines in 2 locations

includes/admin/class-wc-admin-setup-wizard.php 2 locations

@@ 876-878 (lines=3) @@
873
					class="method wc-enhanced-select"
874
					data-plugins="<?php echo wc_esc_json( wp_json_encode( $this->get_wcs_requisite_plugins() ) ); ?>"
875
				>
876
				<?php foreach ( $shipping_methods as $method_id => $method ) : ?>
877
					<option value="<?php echo esc_attr( $method_id ); ?>" <?php selected( $selected, $method_id ); ?>><?php echo esc_html( $method['name'] ); ?></option>
878
				<?php endforeach; ?>
879
				</select>
880
			</div>
881
			<div class="shipping-method-descriptions">
@@ 882-886 (lines=5) @@
879
				</select>
880
			</div>
881
			<div class="shipping-method-descriptions">
882
				<?php foreach ( $shipping_methods as $method_id => $method ) : ?>
883
					<p class="shipping-method-description <?php echo esc_attr( $method_id ); ?> <?php echo $method_id !== $selected ? 'hide' : ''; ?>">
884
						<?php echo esc_html( $method['description'] ); ?>
885
					</p>
886
				<?php endforeach; ?>
887
			</div>
888
		</div>
889