Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 665-671 (lines=7) @@
662
			);
663
		}
664
665
		if ( WC()->cart->needs_shipping() ) {
666
			$items[] = array(
667
				'type'   => 'final',
668
				'label'  => __( 'Shipping', 'woocommerce-gateway-stripe' ),
669
				'amount' => $shipping,
670
			);
671
		}
672
673
		if ( WC()->cart->has_discount() ) {
674
			$items[] = array(
@@ 673-679 (lines=7) @@
670
			);
671
		}
672
673
		if ( WC()->cart->has_discount() ) {
674
			$items[] = array(
675
				'type'   => 'final',
676
				'label'  => __( 'Discount', 'woocommerce-gateway-stripe' ),
677
				'amount' => $discounts,
678
			);
679
		}
680
681
		return $items;
682
	}