Code Duplication    Length = 4-4 lines in 2 locations

includes/legacy/class-wc-gateway-stripe.php 1 location

@@ 289-292 (lines=4) @@
286
		if ( $this->stripe_checkout ) {
287
			wp_enqueue_script( 'stripe', 'https://checkout.stripe.com/v2/checkout.js', '', '2.0', true );
288
			wp_enqueue_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe_checkout.js', WC_STRIPE_MAIN_FILE ), array( 'stripe' ), WC_STRIPE_VERSION, true );
289
		} else {
290
			wp_enqueue_script( 'stripe', 'https://js.stripe.com/v2/', '', '1.0', true );
291
			wp_enqueue_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripe' ), WC_STRIPE_VERSION, true );
292
		}
293
294
		$stripe_params = array(
295
			'key'                  => $this->publishable_key,

includes/class-wc-gateway-stripe.php 1 location

@@ 463-466 (lines=4) @@
460
		if ( $this->stripe_checkout ) {
461
			wp_enqueue_script( 'stripe_checkout', 'https://checkout.stripe.com/v2/checkout.js', '', '2.0', true );
462
			wp_enqueue_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe-checkout' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'stripe' ), WC_STRIPE_VERSION, true );
463
		} else {
464
			wp_enqueue_script( 'stripe', 'https://js.stripe.com/v2/', '', '1.0', true );
465
			wp_enqueue_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripe' ), WC_STRIPE_VERSION, true );
466
		}
467
468
		$stripe_params = array(
469
			'key'                  => $this->publishable_key,