Code Duplication    Length = 7-7 lines in 2 locations

includes/class-wc-stripe-apple-pay.php 2 locations

@@ 621-627 (lines=7) @@
618
			);
619
		}
620
621
		if ( WC()->cart->needs_shipping() ) {
622
			$items[] = array(
623
				'type'   => 'final',
624
				'label'  => __( 'Shipping', 'woocommerce-gateway-stripe' ),
625
				'amount' => $shipping,
626
			);
627
		}
628
629
		if ( WC()->cart->has_discount() ) {
630
			$items[] = array(
@@ 629-635 (lines=7) @@
626
			);
627
		}
628
629
		if ( WC()->cart->has_discount() ) {
630
			$items[] = array(
631
				'type'   => 'final',
632
				'label'  => __( 'Discount', 'woocommerce-gateway-stripe' ),
633
				'amount' => $discounts,
634
			);
635
		}
636
637
		return $items;
638
	}