Code Duplication    Length = 7-7 lines in 2 locations

includes/class-wc-stripe-payment-request.php 1 location

@@ 157-163 (lines=7) @@
154
			$postcode = wc_format_postcode( $postcode, $country );
155
		}
156
157
		if ( $country ) {
158
			WC()->customer->set_location( $country, $state, $postcode, $city );
159
			WC()->customer->set_shipping_location( $country, $state, $postcode, $city );
160
		} else {
161
			WC()->customer->set_to_base();
162
			WC()->customer->set_shipping_to_base();
163
		}
164
165
		version_compare( WC_VERSION, '3.0', '<' ) ? WC()->customer->calculated_shipping( true ) : WC()->customer->set_calculated_shipping( true );
166

includes/class-wc-stripe-apple-pay.php 1 location

@@ 534-540 (lines=7) @@
531
			$postcode = wc_format_postcode( $postcode, $country );
532
		}
533
534
		if ( $country ) {
535
			WC()->customer->set_location( $country, $state, $postcode, $city );
536
			WC()->customer->set_shipping_location( $country, $state, $postcode, $city );
537
		} else {
538
			WC()->customer->set_to_base();
539
			WC()->customer->set_shipping_to_base();
540
		}
541
542
		version_compare( WC_VERSION, '3.0', '<' ) ? WC()->customer->calculated_shipping( true ) : WC()->customer->set_calculated_shipping( true );
543