Completed
Pull Request — master (#1075)
by Radoslav
01:53
created
includes/compat/class-wc-stripe-email-failed-renewal-authentication.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit; // Exit if accessed directly.
4 4
 }
5 5
 
@@ -14,20 +14,20 @@  discard block
 block discarded – undo
14 14
 	 *
15 15
 	 * @param WC_Email[] $email_classes All existing instances of WooCommerce emails.
16 16
 	 */
17
-	public function __construct( $email_classes = array() ) {
17
+	public function __construct($email_classes = array()) {
18 18
 		$this->id             = 'failed_renewal_authentication';
19
-		$this->title          = __( 'Failed Subscription Renewal SCA Authentication', 'woocommerce-gateway-stripe' );
20
-		$this->description    = __( 'Sent to a customer when a renewal fails because the transaction requires an SCA verification. The email contains renewal order information and payment links.', 'woocommerce-gateway-stripe' );
19
+		$this->title          = __('Failed Subscription Renewal SCA Authentication', 'woocommerce-gateway-stripe');
20
+		$this->description    = __('Sent to a customer when a renewal fails because the transaction requires an SCA verification. The email contains renewal order information and payment links.', 'woocommerce-gateway-stripe');
21 21
 		$this->customer_email = true;
22 22
 
23 23
 		$this->template_html  = 'emails/failed-renewal-authentication.php';
24 24
 		$this->template_plain = 'emails/plain/failed-renewal-authentication.php';
25
-		$this->template_base  = plugin_dir_path( WC_STRIPE_MAIN_FILE ) . 'templates/';
25
+		$this->template_base  = plugin_dir_path(WC_STRIPE_MAIN_FILE) . 'templates/';
26 26
 
27 27
 		// Triggers the email at the correct hook.
28
-		add_action( 'wc_gateway_stripe_process_payment_authentication_required', array( $this, 'trigger' ) );
28
+		add_action('wc_gateway_stripe_process_payment_authentication_required', array($this, 'trigger'));
29 29
 
30
-		if ( isset( $email_classes['WCS_Email_Customer_Renewal_Invoice'] ) ) {
30
+		if (isset($email_classes['WCS_Email_Customer_Renewal_Invoice'])) {
31 31
 			$this->original_email = $email_classes['WCS_Email_Customer_Renewal_Invoice'];
32 32
 		}
33 33
 
@@ -40,21 +40,21 @@  discard block
 block discarded – undo
40 40
 	 *
41 41
 	 * @param WC_Order $order The order that is being paid.
42 42
 	 */
43
-	public function trigger( $order ) {
44
-		if ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order->get_id() ) || wcs_is_subscription( $order->get_id() ) || wcs_order_contains_renewal( $order->get_id() ) ) ) {
45
-			parent::trigger( $order );
43
+	public function trigger($order) {
44
+		if (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order->get_id()) || wcs_is_subscription($order->get_id()) || wcs_order_contains_renewal($order->get_id()))) {
45
+			parent::trigger($order);
46 46
 
47 47
 			// Prevent the renewal email from WooCommerce Subscriptions from being sent.
48
-			if ( isset( $this->original_email ) ) {
49
-				remove_action( 'woocommerce_generated_manual_renewal_order_renewal_notification', array( $this->original_email, 'trigger' ) );
50
-				remove_action( 'woocommerce_order_status_failed_renewal_notification', array( $this->original_email, 'trigger' ) );
48
+			if (isset($this->original_email)) {
49
+				remove_action('woocommerce_generated_manual_renewal_order_renewal_notification', array($this->original_email, 'trigger'));
50
+				remove_action('woocommerce_order_status_failed_renewal_notification', array($this->original_email, 'trigger'));
51 51
 			}
52 52
 
53 53
 			// Prevent the retry email from WooCommerce Subscriptions from being sent.
54
-			add_filter( 'wcs_get_retry_rule_raw', array( $this, 'prevent_retry_notification_email' ), 100, 3 );
54
+			add_filter('wcs_get_retry_rule_raw', array($this, 'prevent_retry_notification_email'), 100, 3);
55 55
 
56 56
 			// Send email to store owner indicating communication is happening with the customer to request authentication.
57
-			add_filter( 'wcs_get_retry_rule_raw', array( $this, 'set_store_owner_custom_email' ), 100, 3 );
57
+			add_filter('wcs_get_retry_rule_raw', array($this, 'set_store_owner_custom_email'), 100, 3);
58 58
 		}
59 59
 	}
60 60
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	 * @return string
65 65
 	 */
66 66
 	public function get_default_subject() {
67
-		return __( 'Payment authorization needed for renewal of {site_title} order {order_number}', 'woocommerce-gateway-stripe' );
67
+		return __('Payment authorization needed for renewal of {site_title} order {order_number}', 'woocommerce-gateway-stripe');
68 68
 	}
69 69
 
70 70
 	/**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 * @return string
74 74
 	 */
75 75
 	public function get_default_heading() {
76
-		return __( 'Payment authorization needed for renewal of order {order_number}', 'woocommerce-gateway-stripe' );
76
+		return __('Payment authorization needed for renewal of order {order_number}', 'woocommerce-gateway-stripe');
77 77
 	}
78 78
 
79 79
 	/**
@@ -84,8 +84,8 @@  discard block
 block discarded – undo
84 84
 	 * @param int   $order_id     The ID of the order that needs payment.
85 85
 	 * @return array
86 86
 	 */
87
-	public function prevent_retry_notification_email( $rule_array, $retry_number, $order_id ) {
88
-		if ( wcs_get_objects_property( $this->object, 'id' ) === $order_id ) {
87
+	public function prevent_retry_notification_email($rule_array, $retry_number, $order_id) {
88
+		if (wcs_get_objects_property($this->object, 'id') === $order_id) {
89 89
 			$rule_array['email_template_customer'] = '';
90 90
 		}
91 91
 
@@ -100,9 +100,9 @@  discard block
 block discarded – undo
100 100
 	 * @param int   $order_id     The ID of the order that needs payment.
101 101
 	 * @return array
102 102
 	 */
103
-	public function set_store_owner_custom_email( $rule_array, $retry_number, $order_id ) {
103
+	public function set_store_owner_custom_email($rule_array, $retry_number, $order_id) {
104 104
 		if (
105
-			wcs_get_objects_property( $this->object, 'id' ) === $order_id &&
105
+			wcs_get_objects_property($this->object, 'id') === $order_id &&
106 106
 			'' !== $rule_array['email_template_admin'] // Only send our email if a retry admin email was already going to be sent.
107 107
 		) {
108 108
 			$rule_array['email_template_admin'] = 'WC_Stripe_Email_Failed_Authentication_Retry';
Please login to merge, or discard this patch.
woocommerce-gateway-stripe.php 1 patch
Spacing   +90 added lines, -90 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  *
16 16
  */
17 17
 
18
-if ( ! defined( 'ABSPATH' ) ) {
18
+if ( ! defined('ABSPATH')) {
19 19
 	exit;
20 20
 }
21 21
 
@@ -29,29 +29,29 @@  discard block
 block discarded – undo
29 29
  */
30 30
 function woocommerce_stripe_missing_wc_notice() {
31 31
 	/* translators: 1. URL link. */
32
-	echo '<div class="error"><p><strong>' . sprintf( esc_html__( 'Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe' ), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>' ) . '</strong></p></div>';
32
+	echo '<div class="error"><p><strong>' . sprintf(esc_html__('Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe'), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>') . '</strong></p></div>';
33 33
 }
34 34
 
35
-add_action( 'plugins_loaded', 'woocommerce_gateway_stripe_init' );
35
+add_action('plugins_loaded', 'woocommerce_gateway_stripe_init');
36 36
 
37 37
 function woocommerce_gateway_stripe_init() {
38
-	load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
38
+	load_plugin_textdomain('woocommerce-gateway-stripe', false, plugin_basename(dirname(__FILE__)) . '/languages');
39 39
 
40
-	if ( ! class_exists( 'WooCommerce' ) ) {
41
-		add_action( 'admin_notices', 'woocommerce_stripe_missing_wc_notice' );
40
+	if ( ! class_exists('WooCommerce')) {
41
+		add_action('admin_notices', 'woocommerce_stripe_missing_wc_notice');
42 42
 		return;
43 43
 	}
44 44
 
45
-	if ( ! class_exists( 'WC_Stripe' ) ) :
45
+	if ( ! class_exists('WC_Stripe')) :
46 46
 		/**
47 47
 		 * Required minimums and constants
48 48
 		 */
49
-		define( 'WC_STRIPE_VERSION', '4.3.0' );
50
-		define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' );
51
-		define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' );
52
-		define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
53
-		define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
54
-		define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
49
+		define('WC_STRIPE_VERSION', '4.3.0');
50
+		define('WC_STRIPE_MIN_PHP_VER', '5.6.0');
51
+		define('WC_STRIPE_MIN_WC_VER', '2.6.0');
52
+		define('WC_STRIPE_MAIN_FILE', __FILE__);
53
+		define('WC_STRIPE_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
54
+		define('WC_STRIPE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
55 55
 
56 56
 		class WC_Stripe {
57 57
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 			 * @return Singleton The *Singleton* instance.
67 67
 			 */
68 68
 			public static function get_instance() {
69
-				if ( null === self::$instance ) {
69
+				if (null === self::$instance) {
70 70
 					self::$instance = new self();
71 71
 				}
72 72
 				return self::$instance;
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 			 * *Singleton* via the `new` operator from outside of this class.
94 94
 			 */
95 95
 			private function __construct() {
96
-				add_action( 'admin_init', array( $this, 'install' ) );
96
+				add_action('admin_init', array($this, 'install'));
97 97
 				$this->init();
98 98
 			}
99 99
 
@@ -104,52 +104,52 @@  discard block
 block discarded – undo
104 104
 			 * @version 4.0.0
105 105
 			 */
106 106
 			public function init() {
107
-				if ( is_admin() ) {
108
-					require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-privacy.php';
107
+				if (is_admin()) {
108
+					require_once dirname(__FILE__) . '/includes/admin/class-wc-stripe-privacy.php';
109 109
 				}
110 110
 
111
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php';
112
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php';
113
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php';
114
-				include_once dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php';
115
-				require_once dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php';
116
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php';
117
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php';
118
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php';
119
-				require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php';
120
-				require_once dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php';
121
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php';
122
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php';
123
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php';
124
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php';
125
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php';
126
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php';
127
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php';
128
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php';
129
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php';
130
-				require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php';
131
-				require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php';
132
-				require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php';
133
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php';
134
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php';
135
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php';
136
-				require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-intent-controller.php';
137
-
138
-				if ( is_admin() ) {
139
-					require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php';
111
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-exception.php';
112
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-logger.php';
113
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-helper.php';
114
+				include_once dirname(__FILE__) . '/includes/class-wc-stripe-api.php';
115
+				require_once dirname(__FILE__) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php';
116
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-webhook-handler.php';
117
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-sepa-payment-token.php';
118
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-apple-pay-registration.php';
119
+				require_once dirname(__FILE__) . '/includes/compat/class-wc-stripe-pre-orders-compat.php';
120
+				require_once dirname(__FILE__) . '/includes/class-wc-gateway-stripe.php';
121
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php';
122
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php';
123
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php';
124
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php';
125
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php';
126
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php';
127
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php';
128
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php';
129
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php';
130
+				require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-stripe-payment-request.php';
131
+				require_once dirname(__FILE__) . '/includes/compat/class-wc-stripe-subs-compat.php';
132
+				require_once dirname(__FILE__) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php';
133
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-order-handler.php';
134
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-payment-tokens.php';
135
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-customer.php';
136
+				require_once dirname(__FILE__) . '/includes/class-wc-stripe-intent-controller.php';
137
+
138
+				if (is_admin()) {
139
+					require_once dirname(__FILE__) . '/includes/admin/class-wc-stripe-admin-notices.php';
140 140
 				}
141 141
 
142 142
 				// REMOVE IN THE FUTURE.
143
-				require_once dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php';
143
+				require_once dirname(__FILE__) . '/includes/deprecated/class-wc-stripe-apple-pay.php';
144 144
 
145
-				add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) );
146
-				add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) );
145
+				add_filter('woocommerce_payment_gateways', array($this, 'add_gateways'));
146
+				add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links'));
147 147
 
148 148
 				// Modify emails emails.
149
-				add_filter( 'woocommerce_email_classes', array( $this, 'add_emails' ), 20 );
149
+				add_filter('woocommerce_email_classes', array($this, 'add_emails'), 20);
150 150
 
151
-				if ( version_compare( WC_VERSION, '3.4', '<' ) ) {
152
-					add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) );
151
+				if (version_compare(WC_VERSION, '3.4', '<')) {
152
+					add_filter('woocommerce_get_sections_checkout', array($this, 'filter_gateway_order_admin'));
153 153
 				}
154 154
 			}
155 155
 
@@ -160,8 +160,8 @@  discard block
 block discarded – undo
160 160
 			 * @version 4.0.0
161 161
 			 */
162 162
 			public function update_plugin_version() {
163
-				delete_option( 'wc_stripe_version' );
164
-				update_option( 'wc_stripe_version', WC_STRIPE_VERSION );
163
+				delete_option('wc_stripe_version');
164
+				update_option('wc_stripe_version', WC_STRIPE_VERSION);
165 165
 			}
166 166
 
167 167
 			/**
@@ -171,15 +171,15 @@  discard block
 block discarded – undo
171 171
 			 * @version 3.1.0
172 172
 			 */
173 173
 			public function install() {
174
-				if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) {
174
+				if ( ! is_plugin_active(plugin_basename(__FILE__))) {
175 175
 					return;
176 176
 				}
177 177
 
178
-				if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) {
179
-					do_action( 'woocommerce_stripe_updated' );
178
+				if ( ! defined('IFRAME_REQUEST') && (WC_STRIPE_VERSION !== get_option('wc_stripe_version'))) {
179
+					do_action('woocommerce_stripe_updated');
180 180
 
181
-					if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) {
182
-						define( 'WC_STRIPE_INSTALLING', true );
181
+					if ( ! defined('WC_STRIPE_INSTALLING')) {
182
+						define('WC_STRIPE_INSTALLING', true);
183 183
 					}
184 184
 
185 185
 					$this->update_plugin_version();
@@ -192,13 +192,13 @@  discard block
 block discarded – undo
192 192
 			 * @since 1.0.0
193 193
 			 * @version 4.0.0
194 194
 			 */
195
-			public function plugin_action_links( $links ) {
195
+			public function plugin_action_links($links) {
196 196
 				$plugin_links = array(
197
-					'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>',
198
-					'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>',
199
-					'<a href="https://woocommerce.com/my-account/create-a-ticket?broken=primary&select=18627">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>',
197
+					'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__('Settings', 'woocommerce-gateway-stripe') . '</a>',
198
+					'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__('Docs', 'woocommerce-gateway-stripe') . '</a>',
199
+					'<a href="https://woocommerce.com/my-account/create-a-ticket?broken=primary&select=18627">' . esc_html__('Support', 'woocommerce-gateway-stripe') . '</a>',
200 200
 				);
201
-				return array_merge( $plugin_links, $links );
201
+				return array_merge($plugin_links, $links);
202 202
 			}
203 203
 
204 204
 			/**
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
 			 * @since 1.0.0
208 208
 			 * @version 4.0.0
209 209
 			 */
210
-			public function add_gateways( $methods ) {
211
-				if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) {
210
+			public function add_gateways($methods) {
211
+				if (class_exists('WC_Subscriptions_Order') && function_exists('wcs_create_renewal_order')) {
212 212
 					$methods[] = 'WC_Stripe_Subs_Compat';
213 213
 					$methods[] = 'WC_Stripe_Sepa_Subs_Compat';
214 214
 				} else {
@@ -234,28 +234,28 @@  discard block
 block discarded – undo
234 234
 			 * @since 4.0.0
235 235
 			 * @version 4.0.0
236 236
 			 */
237
-			public function filter_gateway_order_admin( $sections ) {
238
-				unset( $sections['stripe'] );
239
-				unset( $sections['stripe_bancontact'] );
240
-				unset( $sections['stripe_sofort'] );
241
-				unset( $sections['stripe_giropay'] );
242
-				unset( $sections['stripe_eps'] );
243
-				unset( $sections['stripe_ideal'] );
244
-				unset( $sections['stripe_p24'] );
245
-				unset( $sections['stripe_alipay'] );
246
-				unset( $sections['stripe_sepa'] );
247
-				unset( $sections['stripe_multibanco'] );
237
+			public function filter_gateway_order_admin($sections) {
238
+				unset($sections['stripe']);
239
+				unset($sections['stripe_bancontact']);
240
+				unset($sections['stripe_sofort']);
241
+				unset($sections['stripe_giropay']);
242
+				unset($sections['stripe_eps']);
243
+				unset($sections['stripe_ideal']);
244
+				unset($sections['stripe_p24']);
245
+				unset($sections['stripe_alipay']);
246
+				unset($sections['stripe_sepa']);
247
+				unset($sections['stripe_multibanco']);
248 248
 
249 249
 				$sections['stripe']            = 'Stripe';
250
-				$sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' );
251
-				$sections['stripe_sofort']     = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' );
252
-				$sections['stripe_giropay']    = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' );
253
-				$sections['stripe_eps']        = __( 'Stripe EPS', 'woocommerce-gateway-stripe' );
254
-				$sections['stripe_ideal']      = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' );
255
-				$sections['stripe_p24']        = __( 'Stripe P24', 'woocommerce-gateway-stripe' );
256
-				$sections['stripe_alipay']     = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' );
257
-				$sections['stripe_sepa']       = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' );
258
-				$sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' );
250
+				$sections['stripe_bancontact'] = __('Stripe Bancontact', 'woocommerce-gateway-stripe');
251
+				$sections['stripe_sofort']     = __('Stripe SOFORT', 'woocommerce-gateway-stripe');
252
+				$sections['stripe_giropay']    = __('Stripe Giropay', 'woocommerce-gateway-stripe');
253
+				$sections['stripe_eps']        = __('Stripe EPS', 'woocommerce-gateway-stripe');
254
+				$sections['stripe_ideal']      = __('Stripe iDeal', 'woocommerce-gateway-stripe');
255
+				$sections['stripe_p24']        = __('Stripe P24', 'woocommerce-gateway-stripe');
256
+				$sections['stripe_alipay']     = __('Stripe Alipay', 'woocommerce-gateway-stripe');
257
+				$sections['stripe_sepa']       = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe');
258
+				$sections['stripe_multibanco'] = __('Stripe Multibanco', 'woocommerce-gateway-stripe');
259 259
 
260 260
 				return $sections;
261 261
 			}
@@ -266,16 +266,16 @@  discard block
 block discarded – undo
266 266
 			 * @param WC_Email[] $email_classes All existing emails.
267 267
 			 * @return WC_Email[]
268 268
 			 */
269
-			public function add_emails( $email_classes ) {
269
+			public function add_emails($email_classes) {
270 270
 				require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-authentication.php';
271 271
 				require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-renewal-authentication.php';
272 272
 				require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-preorder-authentication.php';
273 273
 				require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-authentication-retry.php';
274 274
 
275 275
 				// Add all emails, generated by the gateway.
276
-				$email_classes['WC_Stripe_Email_Failed_Renewal_Authentication']  = new WC_Stripe_Email_Failed_Renewal_Authentication( $email_classes );
277
-				$email_classes['WC_Stripe_Email_Failed_Preorder_Authentication'] = new WC_Stripe_Email_Failed_Preorder_Authentication( $email_classes );
278
-				$email_classes['WC_Stripe_Email_Failed_Authentication_Retry'] = new WC_Stripe_Email_Failed_Authentication_Retry( $email_classes );
276
+				$email_classes['WC_Stripe_Email_Failed_Renewal_Authentication']  = new WC_Stripe_Email_Failed_Renewal_Authentication($email_classes);
277
+				$email_classes['WC_Stripe_Email_Failed_Preorder_Authentication'] = new WC_Stripe_Email_Failed_Preorder_Authentication($email_classes);
278
+				$email_classes['WC_Stripe_Email_Failed_Authentication_Retry'] = new WC_Stripe_Email_Failed_Authentication_Retry($email_classes);
279 279
 
280 280
 				return $email_classes;
281 281
 			}
Please login to merge, or discard this patch.
includes/class-wc-stripe-apple-pay-registration.php 1 patch
Spacing   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * @since 4.0.6
6 6
  */
7 7
 
8
-if ( ! defined( 'ABSPATH' ) ) {
8
+if ( ! defined('ABSPATH')) {
9 9
 	exit;
10 10
 }
11 11
 
@@ -60,23 +60,23 @@  discard block
 block discarded – undo
60 60
 	public $apple_pay_verify_notice;
61 61
 
62 62
 	public function __construct() {
63
-		add_action( 'woocommerce_stripe_updated', array( $this, 'update_verification_file' ) );
63
+		add_action('woocommerce_stripe_updated', array($this, 'update_verification_file'));
64 64
 
65
-		$this->stripe_settings         = get_option( 'woocommerce_stripe_settings', array() );
66
-		$this->stripe_enabled          = $this->get_option( 'enabled' );
67
-		$this->payment_request         = 'yes' === $this->get_option( 'payment_request', 'yes' );
68
-		$this->apple_pay_domain_set    = 'yes' === $this->get_option( 'apple_pay_domain_set', 'no' );
65
+		$this->stripe_settings         = get_option('woocommerce_stripe_settings', array());
66
+		$this->stripe_enabled          = $this->get_option('enabled');
67
+		$this->payment_request         = 'yes' === $this->get_option('payment_request', 'yes');
68
+		$this->apple_pay_domain_set    = 'yes' === $this->get_option('apple_pay_domain_set', 'no');
69 69
 		$this->apple_pay_verify_notice = '';
70
-		$this->testmode                = 'yes' === $this->get_option( 'testmode', 'no' );
71
-		$this->secret_key              = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' );
70
+		$this->testmode                = 'yes' === $this->get_option('testmode', 'no');
71
+		$this->secret_key              = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key');
72 72
 
73
-		if ( empty( $this->stripe_settings ) ) {
73
+		if (empty($this->stripe_settings)) {
74 74
 			return;
75 75
 		}
76 76
 
77 77
 		$this->init_apple_pay();
78 78
 
79
-		add_action( 'admin_notices', array( $this, 'admin_notices' ) );
79
+		add_action('admin_notices', array($this, 'admin_notices'));
80 80
 	}
81 81
 
82 82
 	/**
@@ -87,13 +87,13 @@  discard block
 block discarded – undo
87 87
 	 * @param string default
88 88
 	 * @return string $setting_value
89 89
 	 */
90
-	public function get_option( $setting = '', $default = '' ) {
91
-		if ( empty( $this->stripe_settings ) ) {
90
+	public function get_option($setting = '', $default = '') {
91
+		if (empty($this->stripe_settings)) {
92 92
 			return $default;
93 93
 		}
94 94
 
95
-		if ( ! empty( $this->stripe_settings[ $setting ] ) ) {
96
-			return $this->stripe_settings[ $setting ];
95
+		if ( ! empty($this->stripe_settings[$setting])) {
96
+			return $this->stripe_settings[$setting];
97 97
 		}
98 98
 
99 99
 		return $default;
@@ -108,9 +108,9 @@  discard block
 block discarded – undo
108 108
 	public function init_apple_pay() {
109 109
 		if (
110 110
 			is_admin() &&
111
-			isset( $_GET['page'] ) && 'wc-settings' === $_GET['page'] &&
112
-			isset( $_GET['tab'] ) && 'checkout' === $_GET['tab'] &&
113
-			isset( $_GET['section'] ) && 'stripe' === $_GET['section'] &&
111
+			isset($_GET['page']) && 'wc-settings' === $_GET['page'] &&
112
+			isset($_GET['tab']) && 'checkout' === $_GET['tab'] &&
113
+			isset($_GET['section']) && 'stripe' === $_GET['section'] &&
114 114
 			$this->payment_request
115 115
 		) {
116 116
 			$this->process_apple_pay_verification();
@@ -124,9 +124,9 @@  discard block
 block discarded – undo
124 124
 	 * @version 3.1.0
125 125
 	 * @param string $secret_key
126 126
 	 */
127
-	private function register_apple_pay_domain( $secret_key = '' ) {
128
-		if ( empty( $secret_key ) ) {
129
-			throw new Exception( __( 'Unable to verify domain - missing secret key.', 'woocommerce-gateway-stripe' ) );
127
+	private function register_apple_pay_domain($secret_key = '') {
128
+		if (empty($secret_key)) {
129
+			throw new Exception(__('Unable to verify domain - missing secret key.', 'woocommerce-gateway-stripe'));
130 130
 		}
131 131
 
132 132
 		$endpoint = 'https://api.stripe.com/v1/apple_pay/domains';
@@ -144,22 +144,22 @@  discard block
 block discarded – undo
144 144
 			$endpoint,
145 145
 			array(
146 146
 				'headers' => $headers,
147
-				'body'    => http_build_query( $data ),
147
+				'body'    => http_build_query($data),
148 148
 			)
149 149
 		);
150 150
 
151
-		if ( is_wp_error( $response ) ) {
151
+		if (is_wp_error($response)) {
152 152
 			/* translators: error message */
153
-			throw new Exception( sprintf( __( 'Unable to verify domain - %s', 'woocommerce-gateway-stripe' ), $response->get_error_message() ) );
153
+			throw new Exception(sprintf(__('Unable to verify domain - %s', 'woocommerce-gateway-stripe'), $response->get_error_message()));
154 154
 		}
155 155
 
156
-		if ( 200 !== $response['response']['code'] ) {
157
-			$parsed_response = json_decode( $response['body'] );
156
+		if (200 !== $response['response']['code']) {
157
+			$parsed_response = json_decode($response['body']);
158 158
 
159 159
 			$this->apple_pay_verify_notice = $parsed_response->error->message;
160 160
 
161 161
 			/* translators: error message */
162
-			throw new Exception( sprintf( __( 'Unable to verify domain - %s', 'woocommerce-gateway-stripe' ), $parsed_response->error->message ) );
162
+			throw new Exception(sprintf(__('Unable to verify domain - %s', 'woocommerce-gateway-stripe'), $parsed_response->error->message));
163 163
 		}
164 164
 	}
165 165
 
@@ -172,31 +172,31 @@  discard block
 block discarded – undo
172 172
 	 * @since 4.3.0
173 173
 	 * @return bool True on success, false on failure.
174 174
 	 */
175
-	public function update_verification_file( $force = false ) {
176
-			$path     = untrailingslashit( $_SERVER['DOCUMENT_ROOT'] );
175
+	public function update_verification_file($force = false) {
176
+			$path     = untrailingslashit($_SERVER['DOCUMENT_ROOT']);
177 177
 			$dir      = '.well-known';
178 178
 			$file     = 'apple-developer-merchantid-domain-association';
179 179
 			$fullpath = $path . '/' . $dir . '/' . $file;
180 180
 
181
-			$existing_contents = @file_get_contents( $fullpath );
182
-			$new_contents = @file_get_contents( WC_STRIPE_PLUGIN_PATH . '/' . $file );
183
-			if ( ( ! $existing_contents && ! $force ) || $existing_contents === $new_contents ) {
181
+			$existing_contents = @file_get_contents($fullpath);
182
+			$new_contents = @file_get_contents(WC_STRIPE_PLUGIN_PATH . '/' . $file);
183
+			if (( ! $existing_contents && ! $force) || $existing_contents === $new_contents) {
184 184
 				return true;
185 185
 			}
186 186
 
187
-			if ( ! file_exists( $path . '/' . $dir ) ) {
188
-				if ( ! @mkdir( $path . '/' . $dir, 0755 ) ) { // @codingStandardsIgnoreLine
189
-					WC_Stripe_Logger::log( 'Error: ' . __( 'Unable to create domain association folder to domain root.', 'woocommerce-gateway-stripe' ) );
187
+			if ( ! file_exists($path . '/' . $dir)) {
188
+				if ( ! @mkdir($path . '/' . $dir, 0755)) { // @codingStandardsIgnoreLine
189
+					WC_Stripe_Logger::log('Error: ' . __('Unable to create domain association folder to domain root.', 'woocommerce-gateway-stripe'));
190 190
 					return false;
191 191
 				}
192 192
 			}
193 193
 
194
-			if ( ! @copy( WC_STRIPE_PLUGIN_PATH . '/' . $file, $fullpath ) ) { // @codingStandardsIgnoreLine
195
-				WC_Stripe_Logger::log( 'Error: ' . __( 'Unable to copy domain association file to domain root.', 'woocommerce-gateway-stripe' ) );
194
+			if ( ! @copy(WC_STRIPE_PLUGIN_PATH . '/' . $file, $fullpath)) { // @codingStandardsIgnoreLine
195
+				WC_Stripe_Logger::log('Error: ' . __('Unable to copy domain association file to domain root.', 'woocommerce-gateway-stripe'));
196 196
 				return false;
197 197
 			}
198 198
 
199
-			WC_Stripe_Logger::log( 'Domain association file updated.' );
199
+			WC_Stripe_Logger::log('Domain association file updated.');
200 200
 			return true;
201 201
 	}
202 202
 
@@ -207,31 +207,31 @@  discard block
 block discarded – undo
207 207
 	 * @version 3.1.0
208 208
 	 */
209 209
 	public function process_apple_pay_verification() {
210
-		if ( ! $this->update_verification_file( true ) ) {
210
+		if ( ! $this->update_verification_file(true)) {
211 211
 			$this->stripe_settings['apple_pay_domain_set'] = 'no';
212
-			update_option( 'woocommerce_stripe_settings', $this->stripe_settings );
212
+			update_option('woocommerce_stripe_settings', $this->stripe_settings);
213 213
 			return;
214 214
 		}
215 215
 
216 216
 		try {
217 217
 			// At this point then the domain association folder and file should be available.
218 218
 			// Proceed to verify/and or verify again.
219
-			$this->register_apple_pay_domain( $this->secret_key );
219
+			$this->register_apple_pay_domain($this->secret_key);
220 220
 
221 221
 			// No errors to this point, verification success!
222 222
 			$this->stripe_settings['apple_pay_domain_set'] = 'yes';
223 223
 			$this->apple_pay_domain_set                    = true;
224 224
 
225
-			update_option( 'woocommerce_stripe_settings', $this->stripe_settings );
225
+			update_option('woocommerce_stripe_settings', $this->stripe_settings);
226 226
 
227
-			WC_Stripe_Logger::log( 'Your domain has been verified with Apple Pay!' );
227
+			WC_Stripe_Logger::log('Your domain has been verified with Apple Pay!');
228 228
 
229
-		} catch ( Exception $e ) {
229
+		} catch (Exception $e) {
230 230
 			$this->stripe_settings['apple_pay_domain_set'] = 'no';
231 231
 
232
-			update_option( 'woocommerce_stripe_settings', $this->stripe_settings );
232
+			update_option('woocommerce_stripe_settings', $this->stripe_settings);
233 233
 
234
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
234
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
235 235
 		}
236 236
 	}
237 237
 
@@ -241,15 +241,15 @@  discard block
 block discarded – undo
241 241
 	 * @since 4.0.6
242 242
 	 */
243 243
 	public function admin_notices() {
244
-		if ( ! $this->stripe_enabled ) {
244
+		if ( ! $this->stripe_enabled) {
245 245
 			return;
246 246
 		}
247 247
 
248
-		if ( ! current_user_can( 'manage_woocommerce' ) ) {
248
+		if ( ! current_user_can('manage_woocommerce')) {
249 249
 			return;
250 250
 		}
251 251
 
252
-		if ( $this->payment_request && ! empty( $this->apple_pay_verify_notice ) ) {
252
+		if ($this->payment_request && ! empty($this->apple_pay_verify_notice)) {
253 253
 			$allowed_html = array(
254 254
 				'a' => array(
255 255
 					'href'  => array(),
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
 				),
258 258
 			);
259 259
 
260
-			echo '<div class="error stripe-apple-pay-message"><p>' . wp_kses( make_clickable( $this->apple_pay_verify_notice ), $allowed_html ) . '</p></div>';
260
+			echo '<div class="error stripe-apple-pay-message"><p>' . wp_kses(make_clickable($this->apple_pay_verify_notice), $allowed_html) . '</p></div>';
261 261
 		}
262 262
 
263 263
 		/**
@@ -265,9 +265,9 @@  discard block
 block discarded – undo
265 265
 		 * when setting screen is displayed. So if domain verification is not set,
266 266
 		 * something went wrong so lets notify user.
267 267
 		 */
268
-		if ( ! empty( $this->secret_key ) && $this->payment_request && ! $this->apple_pay_domain_set ) {
268
+		if ( ! empty($this->secret_key) && $this->payment_request && ! $this->apple_pay_domain_set) {
269 269
 			/* translators: 1) HTML anchor open tag 2) HTML anchor closing tag */
270
-			echo '<div class="error stripe-apple-pay-message"><p>' . sprintf( __( 'Apple Pay domain verification failed. Please check the %1$slog%2$s to see the issue. (Logging must be enabled to see recorded logs)', 'woocommerce-gateway-stripe' ), '<a href="' . admin_url( 'admin.php?page=wc-status&tab=logs' ) . '">', '</a>' ) . '</p></div>';
270
+			echo '<div class="error stripe-apple-pay-message"><p>' . sprintf(__('Apple Pay domain verification failed. Please check the %1$slog%2$s to see the issue. (Logging must be enabled to see recorded logs)', 'woocommerce-gateway-stripe'), '<a href="' . admin_url('admin.php?page=wc-status&tab=logs') . '">', '</a>') . '</p></div>';
271 271
 		}
272 272
 	}
273 273
 }
Please login to merge, or discard this patch.
includes/class-wc-gateway-stripe.php 1 patch
Spacing   +292 added lines, -292 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -85,9 +85,9 @@  discard block
 block discarded – undo
85 85
 	public function __construct() {
86 86
 		$this->retry_interval = 1;
87 87
 		$this->id             = 'stripe';
88
-		$this->method_title   = __( 'Stripe', 'woocommerce-gateway-stripe' );
88
+		$this->method_title   = __('Stripe', 'woocommerce-gateway-stripe');
89 89
 		/* translators: 1) link to Stripe register page 2) link to Stripe api keys page */
90
-		$this->method_description = sprintf( __( 'Stripe works by adding payment fields on the checkout and then sending the details to Stripe for verification. <a href="%1$s" target="_blank">Sign up</a> for a Stripe account, and <a href="%2$s" target="_blank">get your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), 'https://dashboard.stripe.com/register', 'https://dashboard.stripe.com/account/apikeys' );
90
+		$this->method_description = sprintf(__('Stripe works by adding payment fields on the checkout and then sending the details to Stripe for verification. <a href="%1$s" target="_blank">Sign up</a> for a Stripe account, and <a href="%2$s" target="_blank">get your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), 'https://dashboard.stripe.com/register', 'https://dashboard.stripe.com/account/apikeys');
91 91
 		$this->has_fields         = true;
92 92
 		$this->supports           = array(
93 93
 			'products',
@@ -114,37 +114,37 @@  discard block
 block discarded – undo
114 114
 		$this->init_settings();
115 115
 
116 116
 		// Get setting values.
117
-		$this->title                = $this->get_option( 'title' );
118
-		$this->description          = $this->get_option( 'description' );
119
-		$this->enabled              = $this->get_option( 'enabled' );
120
-		$this->testmode             = 'yes' === $this->get_option( 'testmode' );
121
-		$this->inline_cc_form       = 'yes' === $this->get_option( 'inline_cc_form' );
122
-		$this->capture              = 'yes' === $this->get_option( 'capture', 'yes' );
123
-		$this->statement_descriptor = WC_Stripe_Helper::clean_statement_descriptor( $this->get_option( 'statement_descriptor' ) );
124
-		$this->saved_cards          = 'yes' === $this->get_option( 'saved_cards' );
125
-		$this->secret_key           = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' );
126
-		$this->publishable_key      = $this->testmode ? $this->get_option( 'test_publishable_key' ) : $this->get_option( 'publishable_key' );
127
-		$this->payment_request      = 'yes' === $this->get_option( 'payment_request', 'yes' );
128
-
129
-		WC_Stripe_API::set_secret_key( $this->secret_key );
117
+		$this->title                = $this->get_option('title');
118
+		$this->description          = $this->get_option('description');
119
+		$this->enabled              = $this->get_option('enabled');
120
+		$this->testmode             = 'yes' === $this->get_option('testmode');
121
+		$this->inline_cc_form       = 'yes' === $this->get_option('inline_cc_form');
122
+		$this->capture              = 'yes' === $this->get_option('capture', 'yes');
123
+		$this->statement_descriptor = WC_Stripe_Helper::clean_statement_descriptor($this->get_option('statement_descriptor'));
124
+		$this->saved_cards          = 'yes' === $this->get_option('saved_cards');
125
+		$this->secret_key           = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key');
126
+		$this->publishable_key      = $this->testmode ? $this->get_option('test_publishable_key') : $this->get_option('publishable_key');
127
+		$this->payment_request      = 'yes' === $this->get_option('payment_request', 'yes');
128
+
129
+		WC_Stripe_API::set_secret_key($this->secret_key);
130 130
 
131 131
 		// Hooks.
132
-		add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
133
-		add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
134
-		add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
135
-		add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_fee' ) );
136
-		add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_payout' ), 20 );
137
-		add_action( 'woocommerce_customer_save_address', array( $this, 'show_update_card_notice' ), 10, 2 );
138
-		add_filter( 'woocommerce_available_payment_gateways', array( $this, 'prepare_order_pay_page' ) );
139
-		add_action( 'woocommerce_account_view-order_endpoint', array( $this, 'check_intent_status_on_order_page' ), 1 );
140
-		add_filter( 'woocommerce_payment_successful_result', array( $this, 'modify_successful_payment_result' ), 99999, 2 );
141
-		add_action( 'set_logged_in_cookie', array( $this, 'set_cookie_on_current_request' ) );
142
-		add_filter( 'woocommerce_get_checkout_payment_url', array( $this, 'get_checkout_payment_url' ), 10, 2 );
143
-
144
-		if ( WC_Stripe_Helper::is_pre_orders_exists() ) {
132
+		add_action('wp_enqueue_scripts', array($this, 'payment_scripts'));
133
+		add_action('admin_enqueue_scripts', array($this, 'admin_scripts'));
134
+		add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
135
+		add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_fee'));
136
+		add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_payout'), 20);
137
+		add_action('woocommerce_customer_save_address', array($this, 'show_update_card_notice'), 10, 2);
138
+		add_filter('woocommerce_available_payment_gateways', array($this, 'prepare_order_pay_page'));
139
+		add_action('woocommerce_account_view-order_endpoint', array($this, 'check_intent_status_on_order_page'), 1);
140
+		add_filter('woocommerce_payment_successful_result', array($this, 'modify_successful_payment_result'), 99999, 2);
141
+		add_action('set_logged_in_cookie', array($this, 'set_cookie_on_current_request'));
142
+		add_filter('woocommerce_get_checkout_payment_url', array($this, 'get_checkout_payment_url'), 10, 2);
143
+
144
+		if (WC_Stripe_Helper::is_pre_orders_exists()) {
145 145
 			$this->pre_orders = new WC_Stripe_Pre_Orders_Compat();
146 146
 
147
-			add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this->pre_orders, 'process_pre_order_release_payment' ) );
147
+			add_action('wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array($this->pre_orders, 'process_pre_order_release_payment'));
148 148
 		}
149 149
 	}
150 150
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 	 * @return bool
156 156
 	 */
157 157
 	public function are_keys_set() {
158
-		if ( empty( $this->secret_key ) || empty( $this->publishable_key ) ) {
158
+		if (empty($this->secret_key) || empty($this->publishable_key)) {
159 159
 			return false;
160 160
 		}
161 161
 
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 	 * @since 4.0.2
169 169
 	 */
170 170
 	public function is_available() {
171
-		if ( is_add_payment_method_page() && ! $this->saved_cards ) {
171
+		if (is_add_payment_method_page() && ! $this->saved_cards) {
172 172
 			return false;
173 173
 		}
174 174
 
@@ -182,13 +182,13 @@  discard block
 block discarded – undo
182 182
 	 * @param int    $user_id      The ID of the current user.
183 183
 	 * @param string $load_address The address to load.
184 184
 	 */
185
-	public function show_update_card_notice( $user_id, $load_address ) {
186
-		if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods( $user_id ) || 'billing' !== $load_address ) {
185
+	public function show_update_card_notice($user_id, $load_address) {
186
+		if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods($user_id) || 'billing' !== $load_address) {
187 187
 			return;
188 188
 		}
189 189
 
190 190
 		/* translators: 1) Opening anchor tag 2) closing anchor tag */
191
-		wc_add_notice( sprintf( __( 'If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe' ), '<a href="' . esc_url( wc_get_endpoint_url( 'payment-methods' ) ) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>' ), 'notice' );
191
+		wc_add_notice(sprintf(__('If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe'), '<a href="' . esc_url(wc_get_endpoint_url('payment-methods')) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>'), 'notice');
192 192
 	}
193 193
 
194 194
 	/**
@@ -203,24 +203,24 @@  discard block
 block discarded – undo
203 203
 
204 204
 		$icons_str = '';
205 205
 
206
-		$icons_str .= isset( $icons['visa'] ) ? $icons['visa'] : '';
207
-		$icons_str .= isset( $icons['amex'] ) ? $icons['amex'] : '';
208
-		$icons_str .= isset( $icons['mastercard'] ) ? $icons['mastercard'] : '';
206
+		$icons_str .= isset($icons['visa']) ? $icons['visa'] : '';
207
+		$icons_str .= isset($icons['amex']) ? $icons['amex'] : '';
208
+		$icons_str .= isset($icons['mastercard']) ? $icons['mastercard'] : '';
209 209
 
210
-		if ( 'USD' === get_woocommerce_currency() ) {
211
-			$icons_str .= isset( $icons['discover'] ) ? $icons['discover'] : '';
212
-			$icons_str .= isset( $icons['jcb'] ) ? $icons['jcb'] : '';
213
-			$icons_str .= isset( $icons['diners'] ) ? $icons['diners'] : '';
210
+		if ('USD' === get_woocommerce_currency()) {
211
+			$icons_str .= isset($icons['discover']) ? $icons['discover'] : '';
212
+			$icons_str .= isset($icons['jcb']) ? $icons['jcb'] : '';
213
+			$icons_str .= isset($icons['diners']) ? $icons['diners'] : '';
214 214
 		}
215 215
 
216
-		return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id );
216
+		return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id);
217 217
 	}
218 218
 
219 219
 	/**
220 220
 	 * Initialise Gateway Settings Form Fields
221 221
 	 */
222 222
 	public function init_form_fields() {
223
-		$this->form_fields = require( dirname( __FILE__ ) . '/admin/stripe-settings.php' );
223
+		$this->form_fields = require(dirname(__FILE__) . '/admin/stripe-settings.php');
224 224
 	}
225 225
 
226 226
 	/**
@@ -228,27 +228,27 @@  discard block
 block discarded – undo
228 228
 	 */
229 229
 	public function payment_fields() {
230 230
 		$user                 = wp_get_current_user();
231
-		$display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
231
+		$display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards;
232 232
 		$total                = WC()->cart->total;
233 233
 		$user_email           = '';
234 234
 		$description          = $this->get_description();
235
-		$description          = ! empty( $description ) ? $description : '';
235
+		$description          = ! empty($description) ? $description : '';
236 236
 		$firstname            = '';
237 237
 		$lastname             = '';
238 238
 
239 239
 		// If paying from order, we need to get total from order not cart.
240
-		if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { // wpcs: csrf ok.
241
-			$order      = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); // wpcs: csrf ok, sanitization ok.
240
+		if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { // wpcs: csrf ok.
241
+			$order      = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); // wpcs: csrf ok, sanitization ok.
242 242
 			$total      = $order->get_total();
243
-			$user_email = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_email : $order->get_billing_email();
243
+			$user_email = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_email : $order->get_billing_email();
244 244
 		} else {
245
-			if ( $user->ID ) {
246
-				$user_email = get_user_meta( $user->ID, 'billing_email', true );
245
+			if ($user->ID) {
246
+				$user_email = get_user_meta($user->ID, 'billing_email', true);
247 247
 				$user_email = $user_email ? $user_email : $user->user_email;
248 248
 			}
249 249
 		}
250 250
 
251
-		if ( is_add_payment_method_page() ) {
251
+		if (is_add_payment_method_page()) {
252 252
 			$firstname       = $user->user_firstname;
253 253
 			$lastname        = $user->user_lastname;
254 254
 		}
@@ -257,33 +257,33 @@  discard block
 block discarded – undo
257 257
 
258 258
 		echo '<div
259 259
 			id="stripe-payment-data"
260
-			data-email="' . esc_attr( $user_email ) . '"
261
-			data-full-name="' . esc_attr( $firstname . ' ' . $lastname ) . '"
262
-			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '"
260
+			data-email="' . esc_attr($user_email) . '"
261
+			data-full-name="' . esc_attr($firstname . ' ' . $lastname) . '"
262
+			data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '"
263 263
 		>';
264 264
 
265
-		if ( $this->testmode ) {
265
+		if ($this->testmode) {
266 266
 			/* translators: link to Stripe testing page */
267
-			$description .= ' ' . sprintf( __( 'TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe' ), 'https://stripe.com/docs/testing' );
267
+			$description .= ' ' . sprintf(__('TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe'), 'https://stripe.com/docs/testing');
268 268
 		}
269 269
 
270
-		$description = trim( $description );
270
+		$description = trim($description);
271 271
 
272
-		echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); // wpcs: xss ok.
272
+		echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); // wpcs: xss ok.
273 273
 
274
-		if ( $display_tokenization ) {
274
+		if ($display_tokenization) {
275 275
 			$this->tokenization_script();
276 276
 			$this->saved_payment_methods();
277 277
 		}
278 278
 
279 279
 		$this->elements_form();
280 280
 
281
-		if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) { // wpcs: csrf ok.
281
+		if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) { // wpcs: csrf ok.
282 282
 
283 283
 			$this->save_payment_method_checkbox();
284 284
 		}
285 285
 
286
-		do_action( 'wc_stripe_cards_payment_fields', $this->id );
286
+		do_action('wc_stripe_cards_payment_fields', $this->id);
287 287
 
288 288
 		echo '</div>';
289 289
 
@@ -298,12 +298,12 @@  discard block
 block discarded – undo
298 298
 	 */
299 299
 	public function elements_form() {
300 300
 		?>
301
-		<fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
302
-			<?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?>
301
+		<fieldset id="wc-<?php echo esc_attr($this->id); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
302
+			<?php do_action('woocommerce_credit_card_form_start', $this->id); ?>
303 303
 
304
-			<?php if ( $this->inline_cc_form ) { ?>
304
+			<?php if ($this->inline_cc_form) { ?>
305 305
 				<label for="card-element">
306
-					<?php esc_html_e( 'Credit or debit card', 'woocommerce-gateway-stripe' ); ?>
306
+					<?php esc_html_e('Credit or debit card', 'woocommerce-gateway-stripe'); ?>
307 307
 				</label>
308 308
 
309 309
 				<div id="stripe-card-element" class="wc-stripe-elements-field">
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
 				</div>
312 312
 			<?php } else { ?>
313 313
 				<div class="form-row form-row-wide">
314
-					<label for="stripe-card-element"><?php esc_html_e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
314
+					<label for="stripe-card-element"><?php esc_html_e('Card Number', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
315 315
 					<div class="stripe-card-group">
316 316
 						<div id="stripe-card-element" class="wc-stripe-elements-field">
317 317
 						<!-- a Stripe Element will be inserted here. -->
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
 				</div>
323 323
 
324 324
 				<div class="form-row form-row-first">
325
-					<label for="stripe-exp-element"><?php esc_html_e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
325
+					<label for="stripe-exp-element"><?php esc_html_e('Expiry Date', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
326 326
 
327 327
 					<div id="stripe-exp-element" class="wc-stripe-elements-field">
328 328
 					<!-- a Stripe Element will be inserted here. -->
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 				</div>
331 331
 
332 332
 				<div class="form-row form-row-last">
333
-					<label for="stripe-cvc-element"><?php esc_html_e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
333
+					<label for="stripe-cvc-element"><?php esc_html_e('Card Code (CVC)', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
334 334
 				<div id="stripe-cvc-element" class="wc-stripe-elements-field">
335 335
 				<!-- a Stripe Element will be inserted here. -->
336 336
 				</div>
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
 			<!-- Used to display form errors -->
342 342
 			<div class="stripe-source-errors" role="alert"></div>
343 343
 			<br />
344
-			<?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?>
344
+			<?php do_action('woocommerce_credit_card_form_end', $this->id); ?>
345 345
 			<div class="clear"></div>
346 346
 		</fieldset>
347 347
 		<?php
@@ -354,13 +354,13 @@  discard block
 block discarded – undo
354 354
 	 * @version 3.1.0
355 355
 	 */
356 356
 	public function admin_scripts() {
357
-		if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) {
357
+		if ('woocommerce_page_wc-settings' !== get_current_screen()->id) {
358 358
 			return;
359 359
 		}
360 360
 
361
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
361
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
362 362
 
363
-		wp_enqueue_script( 'woocommerce_stripe_admin', plugins_url( 'assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION, true );
363
+		wp_enqueue_script('woocommerce_stripe_admin', plugins_url('assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION, true);
364 364
 	}
365 365
 
366 366
 	/**
@@ -372,97 +372,97 @@  discard block
 block discarded – undo
372 372
 	 * @version 4.0.0
373 373
 	 */
374 374
 	public function payment_scripts() {
375
-		if ( ! is_product() && ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) || ( is_order_received_page() ) ) { // wpcs: csrf ok.
375
+		if ( ! is_product() && ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method']) || (is_order_received_page())) { // wpcs: csrf ok.
376 376
 			return;
377 377
 		}
378 378
 
379 379
 		// If Stripe is not enabled bail.
380
-		if ( 'no' === $this->enabled ) {
380
+		if ('no' === $this->enabled) {
381 381
 			return;
382 382
 		}
383 383
 
384 384
 		// If keys are not set bail.
385
-		if ( ! $this->are_keys_set() ) {
386
-			WC_Stripe_Logger::log( 'Keys are not set correctly.' );
385
+		if ( ! $this->are_keys_set()) {
386
+			WC_Stripe_Logger::log('Keys are not set correctly.');
387 387
 			return;
388 388
 		}
389 389
 
390 390
 		// If no SSL bail.
391
-		if ( ! $this->testmode && ! is_ssl() ) {
392
-			WC_Stripe_Logger::log( 'Stripe live mode requires SSL.' );
391
+		if ( ! $this->testmode && ! is_ssl()) {
392
+			WC_Stripe_Logger::log('Stripe live mode requires SSL.');
393 393
 			return;
394 394
 		}
395 395
 
396 396
 		$current_theme = wp_get_theme();
397 397
 
398
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
398
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
399 399
 
400
-		wp_register_style( 'stripe_styles', plugins_url( 'assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION );
401
-		wp_enqueue_style( 'stripe_styles' );
400
+		wp_register_style('stripe_styles', plugins_url('assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION);
401
+		wp_enqueue_style('stripe_styles');
402 402
 
403
-		wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true );
404
-		wp_register_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripe' ), WC_STRIPE_VERSION, true );
403
+		wp_register_script('stripe', 'https://js.stripe.com/v3/', '', '3.0', true);
404
+		wp_register_script('woocommerce_stripe', plugins_url('assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('jquery-payment', 'stripe'), WC_STRIPE_VERSION, true);
405 405
 
406 406
 		$stripe_params = array(
407 407
 			'key'                  => $this->publishable_key,
408
-			'i18n_terms'           => __( 'Please accept the terms and conditions first', 'woocommerce-gateway-stripe' ),
409
-			'i18n_required_fields' => __( 'Please fill in required checkout fields first', 'woocommerce-gateway-stripe' ),
408
+			'i18n_terms'           => __('Please accept the terms and conditions first', 'woocommerce-gateway-stripe'),
409
+			'i18n_required_fields' => __('Please fill in required checkout fields first', 'woocommerce-gateway-stripe'),
410 410
 		);
411 411
 
412 412
 		// If we're on the pay page we need to pass stripe.js the address of the order.
413
-		if ( isset( $_GET['pay_for_order'] ) && 'true' === $_GET['pay_for_order'] ) { // wpcs: csrf ok.
414
-			$order_id = wc_get_order_id_by_order_key( urldecode( $_GET['key'] ) ); // wpcs: csrf ok, sanitization ok, xss ok.
415
-			$order    = wc_get_order( $order_id );
416
-
417
-			if ( is_a( $order, 'WC_Order' ) ) {
418
-				$stripe_params['billing_first_name'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_first_name : $order->get_billing_first_name();
419
-				$stripe_params['billing_last_name']  = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_last_name : $order->get_billing_last_name();
420
-				$stripe_params['billing_address_1']  = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_address_1 : $order->get_billing_address_1();
421
-				$stripe_params['billing_address_2']  = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_address_2 : $order->get_billing_address_2();
422
-				$stripe_params['billing_state']      = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_state : $order->get_billing_state();
423
-				$stripe_params['billing_city']       = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_city : $order->get_billing_city();
424
-				$stripe_params['billing_postcode']   = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_postcode : $order->get_billing_postcode();
425
-				$stripe_params['billing_country']    = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_country : $order->get_billing_country();
413
+		if (isset($_GET['pay_for_order']) && 'true' === $_GET['pay_for_order']) { // wpcs: csrf ok.
414
+			$order_id = wc_get_order_id_by_order_key(urldecode($_GET['key'])); // wpcs: csrf ok, sanitization ok, xss ok.
415
+			$order    = wc_get_order($order_id);
416
+
417
+			if (is_a($order, 'WC_Order')) {
418
+				$stripe_params['billing_first_name'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_first_name : $order->get_billing_first_name();
419
+				$stripe_params['billing_last_name']  = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_last_name : $order->get_billing_last_name();
420
+				$stripe_params['billing_address_1']  = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_address_1 : $order->get_billing_address_1();
421
+				$stripe_params['billing_address_2']  = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_address_2 : $order->get_billing_address_2();
422
+				$stripe_params['billing_state']      = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_state : $order->get_billing_state();
423
+				$stripe_params['billing_city']       = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_city : $order->get_billing_city();
424
+				$stripe_params['billing_postcode']   = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_postcode : $order->get_billing_postcode();
425
+				$stripe_params['billing_country']    = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_country : $order->get_billing_country();
426 426
 			}
427 427
 		}
428 428
 
429 429
 		$sepa_elements_options = apply_filters(
430 430
 			'wc_stripe_sepa_elements_options',
431 431
 			array(
432
-				'supportedCountries' => array( 'SEPA' ),
432
+				'supportedCountries' => array('SEPA'),
433 433
 				'placeholderCountry' => WC()->countries->get_base_country(),
434
-				'style'              => array( 'base' => array( 'fontSize' => '15px' ) ),
434
+				'style'              => array('base' => array('fontSize' => '15px')),
435 435
 			)
436 436
 		);
437 437
 
438
-		$stripe_params['no_prepaid_card_msg']       = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe' );
439
-		$stripe_params['no_sepa_owner_msg']         = __( 'Please enter your IBAN account name.', 'woocommerce-gateway-stripe' );
440
-		$stripe_params['no_sepa_iban_msg']          = __( 'Please enter your IBAN account number.', 'woocommerce-gateway-stripe' );
441
-		$stripe_params['payment_intent_error']      = __( 'We couldn\'t initiate the payment. Please try again.', 'woocommerce-gateway-stripe' );
442
-		$stripe_params['sepa_mandate_notification'] = apply_filters( 'wc_stripe_sepa_mandate_notification', 'email' );
443
-		$stripe_params['allow_prepaid_card']        = apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no';
438
+		$stripe_params['no_prepaid_card_msg']       = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe');
439
+		$stripe_params['no_sepa_owner_msg']         = __('Please enter your IBAN account name.', 'woocommerce-gateway-stripe');
440
+		$stripe_params['no_sepa_iban_msg']          = __('Please enter your IBAN account number.', 'woocommerce-gateway-stripe');
441
+		$stripe_params['payment_intent_error']      = __('We couldn\'t initiate the payment. Please try again.', 'woocommerce-gateway-stripe');
442
+		$stripe_params['sepa_mandate_notification'] = apply_filters('wc_stripe_sepa_mandate_notification', 'email');
443
+		$stripe_params['allow_prepaid_card']        = apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no';
444 444
 		$stripe_params['inline_cc_form']            = $this->inline_cc_form ? 'yes' : 'no';
445
-		$stripe_params['is_checkout']               = ( is_checkout() && empty( $_GET['pay_for_order'] ) ) ? 'yes' : 'no'; // wpcs: csrf ok.
445
+		$stripe_params['is_checkout']               = (is_checkout() && empty($_GET['pay_for_order'])) ? 'yes' : 'no'; // wpcs: csrf ok.
446 446
 		$stripe_params['return_url']                = $this->get_stripe_return_url();
447
-		$stripe_params['ajaxurl']                   = WC_AJAX::get_endpoint( '%%endpoint%%' );
448
-		$stripe_params['stripe_nonce']              = wp_create_nonce( '_wc_stripe_nonce' );
447
+		$stripe_params['ajaxurl']                   = WC_AJAX::get_endpoint('%%endpoint%%');
448
+		$stripe_params['stripe_nonce']              = wp_create_nonce('_wc_stripe_nonce');
449 449
 		$stripe_params['statement_descriptor']      = $this->statement_descriptor;
450
-		$stripe_params['elements_options']          = apply_filters( 'wc_stripe_elements_options', array() );
450
+		$stripe_params['elements_options']          = apply_filters('wc_stripe_elements_options', array());
451 451
 		$stripe_params['sepa_elements_options']     = $sepa_elements_options;
452
-		$stripe_params['invalid_owner_name']        = __( 'Billing First Name and Last Name are required.', 'woocommerce-gateway-stripe' );
453
-		$stripe_params['is_change_payment_page']    = isset( $_GET['change_payment_method'] ) ? 'yes' : 'no'; // wpcs: csrf ok.
454
-		$stripe_params['is_add_payment_page']       = is_wc_endpoint_url( 'add-payment-method' ) ? 'yes' : 'no';
455
-		$stripe_params['is_pay_for_order_page']     = is_wc_endpoint_url( 'order-pay' ) ? 'yes' : 'no';
456
-		$stripe_params['elements_styling']          = apply_filters( 'wc_stripe_elements_styling', false );
457
-		$stripe_params['elements_classes']          = apply_filters( 'wc_stripe_elements_classes', false );
452
+		$stripe_params['invalid_owner_name']        = __('Billing First Name and Last Name are required.', 'woocommerce-gateway-stripe');
453
+		$stripe_params['is_change_payment_page']    = isset($_GET['change_payment_method']) ? 'yes' : 'no'; // wpcs: csrf ok.
454
+		$stripe_params['is_add_payment_page']       = is_wc_endpoint_url('add-payment-method') ? 'yes' : 'no';
455
+		$stripe_params['is_pay_for_order_page']     = is_wc_endpoint_url('order-pay') ? 'yes' : 'no';
456
+		$stripe_params['elements_styling']          = apply_filters('wc_stripe_elements_styling', false);
457
+		$stripe_params['elements_classes']          = apply_filters('wc_stripe_elements_classes', false);
458 458
 
459 459
 		// Merge localized messages to be use in JS.
460
-		$stripe_params = array_merge( $stripe_params, WC_Stripe_Helper::get_localized_messages() );
460
+		$stripe_params = array_merge($stripe_params, WC_Stripe_Helper::get_localized_messages());
461 461
 
462
-		wp_localize_script( 'woocommerce_stripe', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
462
+		wp_localize_script('woocommerce_stripe', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
463 463
 
464 464
 		$this->tokenization_script();
465
-		wp_enqueue_script( 'woocommerce_stripe' );
465
+		wp_enqueue_script('woocommerce_stripe');
466 466
 	}
467 467
 
468 468
 	/**
@@ -473,14 +473,14 @@  discard block
 block discarded – undo
473 473
 	 * @param object $prepared_source The object with source details.
474 474
 	 * @throws WC_Stripe_Exception An exception if the card is prepaid, but prepaid cards are not allowed.
475 475
 	 */
476
-	public function maybe_disallow_prepaid_card( $prepared_source ) {
476
+	public function maybe_disallow_prepaid_card($prepared_source) {
477 477
 		// Check if we don't allow prepaid credit cards.
478
-		if ( apply_filters( 'wc_stripe_allow_prepaid_card', true ) || ! $this->is_prepaid_card( $prepared_source->source_object ) ) {
478
+		if (apply_filters('wc_stripe_allow_prepaid_card', true) || ! $this->is_prepaid_card($prepared_source->source_object)) {
479 479
 			return;
480 480
 		}
481 481
 
482
-		$localized_message = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe' );
483
-		throw new WC_Stripe_Exception( print_r( $prepared_source->source_object, true ), $localized_message );
482
+		$localized_message = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe');
483
+		throw new WC_Stripe_Exception(print_r($prepared_source->source_object, true), $localized_message);
484 484
 	}
485 485
 
486 486
 	/**
@@ -490,10 +490,10 @@  discard block
 block discarded – undo
490 490
 	 * @param  object $prepared_source The source that should be verified.
491 491
 	 * @throws WC_Stripe_Exception     An exception if the source ID is missing.
492 492
 	 */
493
-	public function check_source( $prepared_source ) {
494
-		if ( empty( $prepared_source->source ) ) {
495
-			$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
496
-			throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
493
+	public function check_source($prepared_source) {
494
+		if (empty($prepared_source->source)) {
495
+			$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
496
+			throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message);
497 497
 		}
498 498
 	}
499 499
 
@@ -505,17 +505,17 @@  discard block
 block discarded – undo
505 505
 	 * @param WC_Order $order The order those payment is being processed.
506 506
 	 * @return bool           A flag that indicates that the customer does not exist and should be removed.
507 507
 	 */
508
-	public function maybe_remove_non_existent_customer( $error, $order ) {
509
-		if ( ! $this->is_no_such_customer_error( $error ) ) {
508
+	public function maybe_remove_non_existent_customer($error, $order) {
509
+		if ( ! $this->is_no_such_customer_error($error)) {
510 510
 			return false;
511 511
 		}
512 512
 
513
-		if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) {
514
-			delete_user_meta( $order->customer_user, '_stripe_customer_id' );
515
-			delete_post_meta( $order->get_id(), '_stripe_customer_id' );
513
+		if (WC_Stripe_Helper::is_wc_lt('3.0')) {
514
+			delete_user_meta($order->customer_user, '_stripe_customer_id');
515
+			delete_post_meta($order->get_id(), '_stripe_customer_id');
516 516
 		} else {
517
-			delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
518
-			$order->delete_meta_data( '_stripe_customer_id' );
517
+			delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
518
+			$order->delete_meta_data('_stripe_customer_id');
519 519
 			$order->save();
520 520
 		}
521 521
 
@@ -531,16 +531,16 @@  discard block
 block discarded – undo
531 531
 	 * @param boolean  $force_save_source Whether the payment source must be saved, like when dealing with a Subscription setup.
532 532
 	 * @return array                      Redirection data for `process_payment`.
533 533
 	 */
534
-	public function complete_free_order( $order, $prepared_source, $force_save_source ) {
534
+	public function complete_free_order($order, $prepared_source, $force_save_source) {
535 535
 		$response = array(
536 536
 			'result'   => 'success',
537
-			'redirect' => $this->get_return_url( $order ),
537
+			'redirect' => $this->get_return_url($order),
538 538
 		);
539 539
 
540
-		if ( $force_save_source ) {
541
-			$intent_secret = $this->setup_intent( $order, $prepared_source );
540
+		if ($force_save_source) {
541
+			$intent_secret = $this->setup_intent($order, $prepared_source);
542 542
 
543
-			if ( ! empty( $intent_secret ) ) {
543
+			if ( ! empty($intent_secret)) {
544 544
 				$response['setup_intent_secret'] = $intent_secret;
545 545
 				return $response;
546 546
 			}
@@ -568,76 +568,76 @@  discard block
 block discarded – undo
568 568
 	 * @throws Exception If payment will not be accepted.
569 569
 	 * @return array|void
570 570
 	 */
571
-	public function process_payment( $order_id, $retry = true, $force_save_source = false, $previous_error = false ) {
571
+	public function process_payment($order_id, $retry = true, $force_save_source = false, $previous_error = false) {
572 572
 		try {
573
-			$order = wc_get_order( $order_id );
573
+			$order = wc_get_order($order_id);
574 574
 
575 575
 			// ToDo: `process_pre_order` saves the source to the order for a later payment.
576 576
 			// This might not work well with PaymentIntents.
577
-			if ( $this->maybe_process_pre_orders( $order_id ) ) {
578
-				return $this->pre_orders->process_pre_order( $order_id );
577
+			if ($this->maybe_process_pre_orders($order_id)) {
578
+				return $this->pre_orders->process_pre_order($order_id);
579 579
 			}
580 580
 
581 581
 			// Check whether there is an existing intent.
582
-			$intent = $this->get_intent_from_order( $order );
583
-			if ( isset( $intent->object ) && 'setup_intent' === $intent->object ) {
582
+			$intent = $this->get_intent_from_order($order);
583
+			if (isset($intent->object) && 'setup_intent' === $intent->object) {
584 584
 				$intent = false; // This function can only deal with *payment* intents
585 585
 			}
586 586
 
587 587
 			$stripe_customer_id = null;
588
-			if ( $intent ) {
588
+			if ($intent) {
589 589
 				$stripe_customer_id = $intent->customer;
590 590
 			}
591 591
 
592
-			$prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source, $stripe_customer_id );
592
+			$prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source, $stripe_customer_id);
593 593
 
594
-			$this->maybe_disallow_prepaid_card( $prepared_source );
595
-			$this->check_source( $prepared_source );
596
-			$this->save_source_to_order( $order, $prepared_source );
594
+			$this->maybe_disallow_prepaid_card($prepared_source);
595
+			$this->check_source($prepared_source);
596
+			$this->save_source_to_order($order, $prepared_source);
597 597
 
598
-			if ( 0 >= $order->get_total() ) {
599
-				return $this->complete_free_order( $order, $prepared_source, $force_save_source );
598
+			if (0 >= $order->get_total()) {
599
+				return $this->complete_free_order($order, $prepared_source, $force_save_source);
600 600
 			}
601 601
 
602 602
 			// This will throw exception if not valid.
603
-			$this->validate_minimum_order_amount( $order );
603
+			$this->validate_minimum_order_amount($order);
604 604
 
605
-			WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
605
+			WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}");
606 606
 
607
-			if ( $intent ) {
608
-				$intent = $this->update_existing_intent( $intent, $order, $prepared_source );
607
+			if ($intent) {
608
+				$intent = $this->update_existing_intent($intent, $order, $prepared_source);
609 609
 			} else {
610
-				$intent = $this->create_intent( $order, $prepared_source );
610
+				$intent = $this->create_intent($order, $prepared_source);
611 611
 			}
612 612
 
613 613
 			// Confirm the intent after locking the order to make sure webhooks will not interfere.
614
-			if ( empty( $intent->error ) ) {
615
-				$this->lock_order_payment( $order, $intent );
616
-				$intent = $this->confirm_intent( $intent, $order, $prepared_source );
614
+			if (empty($intent->error)) {
615
+				$this->lock_order_payment($order, $intent);
616
+				$intent = $this->confirm_intent($intent, $order, $prepared_source);
617 617
 			}
618 618
 
619
-			if ( ! empty( $intent->error ) ) {
620
-				$this->maybe_remove_non_existent_customer( $intent->error, $order );
619
+			if ( ! empty($intent->error)) {
620
+				$this->maybe_remove_non_existent_customer($intent->error, $order);
621 621
 
622 622
 				// We want to retry.
623
-				if ( $this->is_retryable_error( $intent->error ) ) {
624
-					return $this->retry_after_error( $intent, $order, $retry, $force_save_source, $previous_error );
623
+				if ($this->is_retryable_error($intent->error)) {
624
+					return $this->retry_after_error($intent, $order, $retry, $force_save_source, $previous_error);
625 625
 				}
626 626
 
627
-				$this->unlock_order_payment( $order );
628
-				$this->throw_localized_message( $intent, $order );
627
+				$this->unlock_order_payment($order);
628
+				$this->throw_localized_message($intent, $order);
629 629
 			}
630 630
 
631
-			if ( ! empty( $intent ) ) {
631
+			if ( ! empty($intent)) {
632 632
 				// Use the last charge within the intent to proceed.
633
-				$response = end( $intent->charges->data );
633
+				$response = end($intent->charges->data);
634 634
 
635 635
 				// If the intent requires a 3DS flow, redirect to it.
636
-				if ( 'requires_action' === $intent->status ) {
637
-					$this->unlock_order_payment( $order );
636
+				if ('requires_action' === $intent->status) {
637
+					$this->unlock_order_payment($order);
638 638
 
639
-					if ( is_wc_endpoint_url( 'order-pay' ) ) {
640
-						$redirect_url = add_query_arg( 'wc-stripe-confirmation', 1, $order->get_checkout_payment_url( false ) );
639
+					if (is_wc_endpoint_url('order-pay')) {
640
+						$redirect_url = add_query_arg('wc-stripe-confirmation', 1, $order->get_checkout_payment_url(false));
641 641
 
642 642
 						return array(
643 643
 							'result'   => 'success',
@@ -652,7 +652,7 @@  discard block
 block discarded – undo
652 652
 
653 653
 						return array(
654 654
 							'result'                => 'success',
655
-							'redirect'              => $this->get_return_url( $order ),
655
+							'redirect'              => $this->get_return_url($order),
656 656
 							'payment_intent_secret' => $intent->client_secret,
657 657
 						);
658 658
 					}
@@ -660,30 +660,30 @@  discard block
 block discarded – undo
660 660
 			}
661 661
 
662 662
 			// Process valid response.
663
-			$this->process_response( $response, $order );
663
+			$this->process_response($response, $order);
664 664
 
665 665
 			// Remove cart.
666
-			if ( isset( WC()->cart ) ) {
666
+			if (isset(WC()->cart)) {
667 667
 				WC()->cart->empty_cart();
668 668
 			}
669 669
 
670 670
 			// Unlock the order.
671
-			$this->unlock_order_payment( $order );
671
+			$this->unlock_order_payment($order);
672 672
 
673 673
 			// Return thank you page redirect.
674 674
 			return array(
675 675
 				'result'   => 'success',
676
-				'redirect' => $this->get_return_url( $order ),
676
+				'redirect' => $this->get_return_url($order),
677 677
 			);
678 678
 
679
-		} catch ( WC_Stripe_Exception $e ) {
680
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
681
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
679
+		} catch (WC_Stripe_Exception $e) {
680
+			wc_add_notice($e->getLocalizedMessage(), 'error');
681
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
682 682
 
683
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $order );
683
+			do_action('wc_gateway_stripe_process_payment_error', $e, $order);
684 684
 
685 685
 			/* translators: error message */
686
-			$order->update_status( 'failed' );
686
+			$order->update_status('failed');
687 687
 
688 688
 			return array(
689 689
 				'result'   => 'fail',
@@ -699,17 +699,17 @@  discard block
 block discarded – undo
699 699
 	 *
700 700
 	 * @param int $order_id The ID of the order.
701 701
 	 */
702
-	public function display_order_fee( $order_id ) {
703
-		if ( apply_filters( 'wc_stripe_hide_display_order_fee', false, $order_id ) ) {
702
+	public function display_order_fee($order_id) {
703
+		if (apply_filters('wc_stripe_hide_display_order_fee', false, $order_id)) {
704 704
 			return;
705 705
 		}
706 706
 
707
-		$order = wc_get_order( $order_id );
707
+		$order = wc_get_order($order_id);
708 708
 
709
-		$fee      = WC_Stripe_Helper::get_stripe_fee( $order );
710
-		$currency = WC_Stripe_Helper::get_stripe_currency( $order );
709
+		$fee      = WC_Stripe_Helper::get_stripe_fee($order);
710
+		$currency = WC_Stripe_Helper::get_stripe_currency($order);
711 711
 
712
-		if ( ! $fee || ! $currency ) {
712
+		if ( ! $fee || ! $currency) {
713 713
 			return;
714 714
 		}
715 715
 
@@ -717,12 +717,12 @@  discard block
 block discarded – undo
717 717
 
718 718
 		<tr>
719 719
 			<td class="label stripe-fee">
720
-				<?php echo wc_help_tip( __( 'This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe' ) ); // wpcs: xss ok. ?>
721
-				<?php esc_html_e( 'Stripe Fee:', 'woocommerce-gateway-stripe' ); ?>
720
+				<?php echo wc_help_tip(__('This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe')); // wpcs: xss ok. ?>
721
+				<?php esc_html_e('Stripe Fee:', 'woocommerce-gateway-stripe'); ?>
722 722
 			</td>
723 723
 			<td width="1%"></td>
724 724
 			<td class="total">
725
-				-&nbsp;<?php echo wc_price( $fee, array( 'currency' => $currency ) ); // wpcs: xss ok. ?>
725
+				-&nbsp;<?php echo wc_price($fee, array('currency' => $currency)); // wpcs: xss ok. ?>
726 726
 			</td>
727 727
 		</tr>
728 728
 
@@ -736,17 +736,17 @@  discard block
 block discarded – undo
736 736
 	 *
737 737
 	 * @param int $order_id The ID of the order.
738 738
 	 */
739
-	public function display_order_payout( $order_id ) {
740
-		if ( apply_filters( 'wc_stripe_hide_display_order_payout', false, $order_id ) ) {
739
+	public function display_order_payout($order_id) {
740
+		if (apply_filters('wc_stripe_hide_display_order_payout', false, $order_id)) {
741 741
 			return;
742 742
 		}
743 743
 
744
-		$order = wc_get_order( $order_id );
744
+		$order = wc_get_order($order_id);
745 745
 
746
-		$net      = WC_Stripe_Helper::get_stripe_net( $order );
747
-		$currency = WC_Stripe_Helper::get_stripe_currency( $order );
746
+		$net      = WC_Stripe_Helper::get_stripe_net($order);
747
+		$currency = WC_Stripe_Helper::get_stripe_currency($order);
748 748
 
749
-		if ( ! $net || ! $currency ) {
749
+		if ( ! $net || ! $currency) {
750 750
 			return;
751 751
 		}
752 752
 
@@ -754,12 +754,12 @@  discard block
 block discarded – undo
754 754
 
755 755
 		<tr>
756 756
 			<td class="label stripe-payout">
757
-				<?php echo wc_help_tip( __( 'This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe' ) ); // wpcs: xss ok. ?>
758
-				<?php esc_html_e( 'Stripe Payout:', 'woocommerce-gateway-stripe' ); ?>
757
+				<?php echo wc_help_tip(__('This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe')); // wpcs: xss ok. ?>
758
+				<?php esc_html_e('Stripe Payout:', 'woocommerce-gateway-stripe'); ?>
759 759
 			</td>
760 760
 			<td width="1%"></td>
761 761
 			<td class="total">
762
-				<?php echo wc_price( $net, array( 'currency' => $currency ) ); // wpcs: xss ok. ?>
762
+				<?php echo wc_price($net, array('currency' => $currency)); // wpcs: xss ok. ?>
763 763
 			</td>
764 764
 		</tr>
765 765
 
@@ -774,18 +774,18 @@  discard block
 block discarded – undo
774 774
 	 * @param  WC_Order $order     The order to add a note to.
775 775
 	 * @throws WC_Stripe_Exception An exception with the right message.
776 776
 	 */
777
-	public function throw_localized_message( $response, $order ) {
777
+	public function throw_localized_message($response, $order) {
778 778
 		$localized_messages = WC_Stripe_Helper::get_localized_messages();
779 779
 
780
-		if ( 'card_error' === $response->error->type ) {
781
-			$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
780
+		if ('card_error' === $response->error->type) {
781
+			$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
782 782
 		} else {
783
-			$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
783
+			$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
784 784
 		}
785 785
 
786
-		$order->add_order_note( $localized_message );
786
+		$order->add_order_note($localized_message);
787 787
 
788
-		throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
788
+		throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
789 789
 	}
790 790
 
791 791
 	/**
@@ -800,22 +800,22 @@  discard block
 block discarded – undo
800 800
 	 * @throws WC_Stripe_Exception        If the payment is not accepted.
801 801
 	 * @return array|void
802 802
 	 */
803
-	public function retry_after_error( $response, $order, $retry, $force_save_source, $previous_error ) {
804
-		if ( ! $retry ) {
805
-			$localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' );
806
-			$order->add_order_note( $localized_message );
807
-			throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.
803
+	public function retry_after_error($response, $order, $retry, $force_save_source, $previous_error) {
804
+		if ( ! $retry) {
805
+			$localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe');
806
+			$order->add_order_note($localized_message);
807
+			throw new WC_Stripe_Exception(print_r($response, true), $localized_message); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.
808 808
 		}
809 809
 
810 810
 		// Don't do anymore retries after this.
811
-		if ( 5 <= $this->retry_interval ) {
812
-			return $this->process_payment( $order->get_id(), false, $force_save_source, $response->error, $previous_error );
811
+		if (5 <= $this->retry_interval) {
812
+			return $this->process_payment($order->get_id(), false, $force_save_source, $response->error, $previous_error);
813 813
 		}
814 814
 
815
-		sleep( $this->retry_interval );
815
+		sleep($this->retry_interval);
816 816
 		$this->retry_interval++;
817 817
 
818
-		return $this->process_payment( $order->get_id(), true, $force_save_source, $response->error, $previous_error );
818
+		return $this->process_payment($order->get_id(), true, $force_save_source, $response->error, $previous_error);
819 819
 	}
820 820
 
821 821
 	/**
@@ -826,23 +826,23 @@  discard block
 block discarded – undo
826 826
 	 * @param WC_Payment_Gateway[] $gateways A list of all available gateways.
827 827
 	 * @return WC_Payment_Gateway[]          Either the same list or an empty one in the right conditions.
828 828
 	 */
829
-	public function prepare_order_pay_page( $gateways ) {
830
-		if ( ! is_wc_endpoint_url( 'order-pay' ) || ! isset( $_GET['wc-stripe-confirmation'] ) ) { // wpcs: csrf ok.
829
+	public function prepare_order_pay_page($gateways) {
830
+		if ( ! is_wc_endpoint_url('order-pay') || ! isset($_GET['wc-stripe-confirmation'])) { // wpcs: csrf ok.
831 831
 			return $gateways;
832 832
 		}
833 833
 
834 834
 		try {
835 835
 			$this->prepare_intent_for_order_pay_page();
836
-		} catch ( WC_Stripe_Exception $e ) {
836
+		} catch (WC_Stripe_Exception $e) {
837 837
 			// Just show the full order pay page if there was a problem preparing the Payment Intent
838 838
 			return $gateways;
839 839
 		}
840 840
 
841
-		add_filter( 'woocommerce_checkout_show_terms', '__return_false' );
842
-		add_filter( 'woocommerce_pay_order_button_html', '__return_false' );
843
-		add_filter( 'woocommerce_available_payment_gateways', '__return_empty_array' );
844
-		add_filter( 'woocommerce_no_available_payment_methods_message', array( $this, 'change_no_available_methods_message' ) );
845
-		add_action( 'woocommerce_pay_order_after_submit', array( $this, 'render_payment_intent_inputs' ) );
841
+		add_filter('woocommerce_checkout_show_terms', '__return_false');
842
+		add_filter('woocommerce_pay_order_button_html', '__return_false');
843
+		add_filter('woocommerce_available_payment_gateways', '__return_empty_array');
844
+		add_filter('woocommerce_no_available_payment_methods_message', array($this, 'change_no_available_methods_message'));
845
+		add_action('woocommerce_pay_order_after_submit', array($this, 'render_payment_intent_inputs'));
846 846
 
847 847
 		return array();
848 848
 	}
@@ -855,7 +855,7 @@  discard block
 block discarded – undo
855 855
 	 * @return string the new message.
856 856
 	 */
857 857
 	public function change_no_available_methods_message() {
858
-		return wpautop( __( "Almost there!\n\nYour order has already been created, the only thing that still needs to be done is for you to authorize the payment with your bank.", 'woocommerce-gateway-stripe' ) );
858
+		return wpautop(__("Almost there!\n\nYour order has already been created, the only thing that still needs to be done is for you to authorize the payment with your bank.", 'woocommerce-gateway-stripe'));
859 859
 	}
860 860
 
861 861
 	/**
@@ -866,23 +866,23 @@  discard block
 block discarded – undo
866 866
 	 * @throws WC_Stripe_Exception
867 867
 	 * @since 4.3
868 868
 	 */
869
-	public function prepare_intent_for_order_pay_page( $order = null ) {
870
-		if ( ! isset( $order ) || empty( $order ) ) {
871
-			$order = wc_get_order( absint( get_query_var( 'order-pay' ) ) );
869
+	public function prepare_intent_for_order_pay_page($order = null) {
870
+		if ( ! isset($order) || empty($order)) {
871
+			$order = wc_get_order(absint(get_query_var('order-pay')));
872 872
 		}
873
-		$intent = $this->get_intent_from_order( $order );
873
+		$intent = $this->get_intent_from_order($order);
874 874
 
875
-		if ( ! $intent ) {
876
-			throw new WC_Stripe_Exception( 'Payment Intent not found', __( 'Payment Intent not found for order #' . $order->get_id(), 'woocommerce-gateway-stripe' ) );
875
+		if ( ! $intent) {
876
+			throw new WC_Stripe_Exception('Payment Intent not found', __('Payment Intent not found for order #' . $order->get_id(), 'woocommerce-gateway-stripe'));
877 877
 		}
878 878
 
879
-		if ( 'requires_payment_method' === $intent->status && isset( $intent->last_payment_error )
880
-		     && 'authentication_required' === $intent->last_payment_error->code ) {
881
-			$intent = WC_Stripe_API::request( array(
879
+		if ('requires_payment_method' === $intent->status && isset($intent->last_payment_error)
880
+		     && 'authentication_required' === $intent->last_payment_error->code) {
881
+			$intent = WC_Stripe_API::request(array(
882 882
 				'payment_method' => $intent->last_payment_error->source->id,
883
-			), 'payment_intents/' . $intent->id . '/confirm' );
884
-			if ( isset( $intent->error ) ) {
885
-				throw new WC_Stripe_Exception( print_r( $intent, true ), $intent->error->message );
883
+			), 'payment_intents/' . $intent->id . '/confirm');
884
+			if (isset($intent->error)) {
885
+				throw new WC_Stripe_Exception(print_r($intent, true), $intent->error->message);
886 886
 			}
887 887
 		}
888 888
 
@@ -897,26 +897,26 @@  discard block
 block discarded – undo
897 897
 	 * @throws WC_Stripe_Exception
898 898
 	 * @since 4.2
899 899
 	 */
900
-	public function render_payment_intent_inputs( $order = null ) {
901
-		if ( ! isset( $order ) || empty( $order ) ) {
902
-			$order = wc_get_order( absint( get_query_var( 'order-pay' ) ) );
900
+	public function render_payment_intent_inputs($order = null) {
901
+		if ( ! isset($order) || empty($order)) {
902
+			$order = wc_get_order(absint(get_query_var('order-pay')));
903 903
 		}
904
-		if ( ! isset( $this->order_pay_intent ) ) {
905
-			$this->prepare_intent_for_order_pay_page( $order );
904
+		if ( ! isset($this->order_pay_intent)) {
905
+			$this->prepare_intent_for_order_pay_page($order);
906 906
 		}
907 907
 
908 908
 		$verification_url = add_query_arg(
909 909
 			array(
910 910
 				'order'            => $order->get_id(),
911
-				'nonce'            => wp_create_nonce( 'wc_stripe_confirm_pi' ),
912
-				'redirect_to'      => rawurlencode( $this->get_return_url( $order ) ),
911
+				'nonce'            => wp_create_nonce('wc_stripe_confirm_pi'),
912
+				'redirect_to'      => rawurlencode($this->get_return_url($order)),
913 913
 				'is_pay_for_order' => true,
914 914
 			),
915
-			WC_AJAX::get_endpoint( 'wc_stripe_verify_intent' )
915
+			WC_AJAX::get_endpoint('wc_stripe_verify_intent')
916 916
 		);
917 917
 
918
-		echo '<input type="hidden" id="stripe-intent-id" value="' . esc_attr( $this->order_pay_intent->client_secret ) . '" />';
919
-		echo '<input type="hidden" id="stripe-intent-return" value="' . esc_attr( $verification_url ) . '" />';
918
+		echo '<input type="hidden" id="stripe-intent-id" value="' . esc_attr($this->order_pay_intent->client_secret) . '" />';
919
+		echo '<input type="hidden" id="stripe-intent-return" value="' . esc_attr($verification_url) . '" />';
920 920
 	}
921 921
 
922 922
 	/**
@@ -926,11 +926,11 @@  discard block
 block discarded – undo
926 926
 	 * @param WC_Payment_Token $token Payment Token.
927 927
 	 * @return string                 Generated payment method HTML
928 928
 	 */
929
-	public function get_saved_payment_method_option_html( $token ) {
930
-		$html          = parent::get_saved_payment_method_option_html( $token );
929
+	public function get_saved_payment_method_option_html($token) {
930
+		$html          = parent::get_saved_payment_method_option_html($token);
931 931
 		$error_wrapper = '<div class="stripe-source-errors" role="alert"></div>';
932 932
 
933
-		return preg_replace( '~</(\w+)>\s*$~', "$error_wrapper</$1>", $html );
933
+		return preg_replace('~</(\w+)>\s*$~', "$error_wrapper</$1>", $html);
934 934
 	}
935 935
 
936 936
 	/**
@@ -940,18 +940,18 @@  discard block
 block discarded – undo
940 940
 	 * @since 4.2.0
941 941
 	 * @param int $order_id The ID that will be used for the thank you page.
942 942
 	 */
943
-	public function check_intent_status_on_order_page( $order_id ) {
944
-		if ( empty( $order_id ) || absint( $order_id ) <= 0 ) {
943
+	public function check_intent_status_on_order_page($order_id) {
944
+		if (empty($order_id) || absint($order_id) <= 0) {
945 945
 			return;
946 946
 		}
947 947
 
948
-		$order = wc_get_order( absint( $order_id ) );
948
+		$order = wc_get_order(absint($order_id));
949 949
 
950
-		if ( ! $order ) {
950
+		if ( ! $order) {
951 951
 			return;
952 952
 		}
953 953
 
954
-		$this->verify_intent_after_checkout( $order );
954
+		$this->verify_intent_after_checkout($order);
955 955
 	}
956 956
 
957 957
 	/**
@@ -965,8 +965,8 @@  discard block
 block discarded – undo
965 965
 	 * @param int   $order_id The ID of the order which is being paid for.
966 966
 	 * @return array
967 967
 	 */
968
-	public function modify_successful_payment_result( $result, $order_id ) {
969
-		if ( ! isset( $result['payment_intent_secret'] ) && ! isset( $result['setup_intent_secret'] ) ) {
968
+	public function modify_successful_payment_result($result, $order_id) {
969
+		if ( ! isset($result['payment_intent_secret']) && ! isset($result['setup_intent_secret'])) {
970 970
 			// Only redirects with intents need to be modified.
971 971
 			return $result;
972 972
 		}
@@ -975,16 +975,16 @@  discard block
 block discarded – undo
975 975
 		$verification_url = add_query_arg(
976 976
 			array(
977 977
 				'order'       => $order_id,
978
-				'nonce'       => wp_create_nonce( 'wc_stripe_confirm_pi' ),
979
-				'redirect_to' => rawurlencode( $result['redirect'] ),
978
+				'nonce'       => wp_create_nonce('wc_stripe_confirm_pi'),
979
+				'redirect_to' => rawurlencode($result['redirect']),
980 980
 			),
981
-			WC_AJAX::get_endpoint( 'wc_stripe_verify_intent' )
981
+			WC_AJAX::get_endpoint('wc_stripe_verify_intent')
982 982
 		);
983 983
 
984
-		if ( isset( $result['payment_intent_secret'] ) ) {
985
-			$redirect = sprintf( '#confirm-pi-%s:%s', $result['payment_intent_secret'], rawurlencode( $verification_url ) );
986
-		} else if ( isset( $result['setup_intent_secret'] ) ) {
987
-			$redirect = sprintf( '#confirm-si-%s:%s', $result['setup_intent_secret'], rawurlencode( $verification_url ) );
984
+		if (isset($result['payment_intent_secret'])) {
985
+			$redirect = sprintf('#confirm-pi-%s:%s', $result['payment_intent_secret'], rawurlencode($verification_url));
986
+		} else if (isset($result['setup_intent_secret'])) {
987
+			$redirect = sprintf('#confirm-si-%s:%s', $result['setup_intent_secret'], rawurlencode($verification_url));
988 988
 		}
989 989
 
990 990
 		return array(
@@ -996,8 +996,8 @@  discard block
 block discarded – undo
996 996
 	/**
997 997
 	 * Proceed with current request using new login session (to ensure consistent nonce).
998 998
 	 */
999
-	public function set_cookie_on_current_request( $cookie ) {
1000
-		$_COOKIE[ LOGGED_IN_COOKIE ] = $cookie;
999
+	public function set_cookie_on_current_request($cookie) {
1000
+		$_COOKIE[LOGGED_IN_COOKIE] = $cookie;
1001 1001
 	}
1002 1002
 
1003 1003
 	/**
@@ -1007,48 +1007,48 @@  discard block
 block discarded – undo
1007 1007
 	 * @since 4.2.0
1008 1008
 	 * @param WC_Order $order The order which is in a transitional state.
1009 1009
 	 */
1010
-	public function verify_intent_after_checkout( $order ) {
1011
-		$payment_method = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->payment_method : $order->get_payment_method();
1012
-		if ( $payment_method !== $this->id ) {
1010
+	public function verify_intent_after_checkout($order) {
1011
+		$payment_method = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->payment_method : $order->get_payment_method();
1012
+		if ($payment_method !== $this->id) {
1013 1013
 			// If this is not the payment method, an intent would not be available.
1014 1014
 			return;
1015 1015
 		}
1016 1016
 
1017
-		$intent = $this->get_intent_from_order( $order );
1018
-		if ( ! $intent ) {
1017
+		$intent = $this->get_intent_from_order($order);
1018
+		if ( ! $intent) {
1019 1019
 			// No intent, redirect to the order received page for further actions.
1020 1020
 			return;
1021 1021
 		}
1022 1022
 
1023 1023
 		// A webhook might have modified or locked the order while the intent was retreived. This ensures we are reading the right status.
1024
-		clean_post_cache( $order->get_id() );
1025
-		$order = wc_get_order( $order->get_id() );
1024
+		clean_post_cache($order->get_id());
1025
+		$order = wc_get_order($order->get_id());
1026 1026
 
1027
-		if ( 'pending' !== $order->get_status() && 'failed' !== $order->get_status() ) {
1027
+		if ('pending' !== $order->get_status() && 'failed' !== $order->get_status()) {
1028 1028
 			// If payment has already been completed, this function is redundant.
1029 1029
 			return;
1030 1030
 		}
1031 1031
 
1032
-		if ( $this->lock_order_payment( $order, $intent ) ) {
1032
+		if ($this->lock_order_payment($order, $intent)) {
1033 1033
 			return;
1034 1034
 		}
1035 1035
 
1036
-		if ( 'setup_intent' === $intent->object && 'succeeded' === $intent->status ) {
1036
+		if ('setup_intent' === $intent->object && 'succeeded' === $intent->status) {
1037 1037
 			WC()->cart->empty_cart();
1038
-			if ( WC_Stripe_Helper::is_pre_orders_exists() && WC_Pre_Orders_Order::order_contains_pre_order( $order ) ) {
1039
-				WC_Pre_Orders_Order::mark_order_as_pre_ordered( $order );
1038
+			if (WC_Stripe_Helper::is_pre_orders_exists() && WC_Pre_Orders_Order::order_contains_pre_order($order)) {
1039
+				WC_Pre_Orders_Order::mark_order_as_pre_ordered($order);
1040 1040
 			} else {
1041 1041
 				$order->payment_complete();
1042 1042
 			}
1043
-		} else if ( 'succeeded' === $intent->status || 'requires_capture' === $intent->status ) {
1043
+		} else if ('succeeded' === $intent->status || 'requires_capture' === $intent->status) {
1044 1044
 			// Proceed with the payment completion.
1045
-			$this->process_response( end( $intent->charges->data ), $order );
1046
-		} else if ( 'requires_payment_method' === $intent->status ) {
1045
+			$this->process_response(end($intent->charges->data), $order);
1046
+		} else if ('requires_payment_method' === $intent->status) {
1047 1047
 			// `requires_payment_method` means that SCA got denied for the current payment method.
1048
-			$this->failed_sca_auth( $order, $intent );
1048
+			$this->failed_sca_auth($order, $intent);
1049 1049
 		}
1050 1050
 
1051
-		$this->unlock_order_payment( $order );
1051
+		$this->unlock_order_payment($order);
1052 1052
 	}
1053 1053
 
1054 1054
 	/**
@@ -1058,18 +1058,18 @@  discard block
 block discarded – undo
1058 1058
 	 * @param WC_Order $order  The order which should be checked.
1059 1059
 	 * @param object   $intent The intent, associated with the order.
1060 1060
 	 */
1061
-	public function failed_sca_auth( $order, $intent ) {
1061
+	public function failed_sca_auth($order, $intent) {
1062 1062
 		// If the order has already failed, do not repeat the same message.
1063
-		if ( 'failed' === $order->get_status() ) {
1063
+		if ('failed' === $order->get_status()) {
1064 1064
 			return;
1065 1065
 		}
1066 1066
 
1067 1067
 		// Load the right message and update the status.
1068
-		$status_message = isset( $intent->last_payment_error )
1068
+		$status_message = isset($intent->last_payment_error)
1069 1069
 			/* translators: 1) The error message that was received from Stripe. */
1070
-			? sprintf( __( 'Stripe SCA authentication failed. Reason: %s', 'woocommerce-gateway-stripe' ), $intent->last_payment_error->message )
1071
-			: __( 'Stripe SCA authentication failed.', 'woocommerce-gateway-stripe' );
1072
-		$order->update_status( 'failed', $status_message );
1070
+			? sprintf(__('Stripe SCA authentication failed. Reason: %s', 'woocommerce-gateway-stripe'), $intent->last_payment_error->message)
1071
+			: __('Stripe SCA authentication failed.', 'woocommerce-gateway-stripe');
1072
+		$order->update_status('failed', $status_message);
1073 1073
 	}
1074 1074
 
1075 1075
 	/**
@@ -1080,10 +1080,10 @@  discard block
 block discarded – undo
1080 1080
 	 *
1081 1081
 	 * @return string Checkout URL for the given order.
1082 1082
 	 */
1083
-	public function get_checkout_payment_url( $pay_url, $order ) {
1083
+	public function get_checkout_payment_url($pay_url, $order) {
1084 1084
 		global $wp;
1085
-		if ( isset( $_GET['wc-stripe-confirmation'] ) && isset( $wp->query_vars['order-pay'] ) && $wp->query_vars['order-pay'] == $order->get_id() ) {
1086
-			$pay_url = add_query_arg( 'wc-stripe-confirmation', 1, $pay_url );
1085
+		if (isset($_GET['wc-stripe-confirmation']) && isset($wp->query_vars['order-pay']) && $wp->query_vars['order-pay'] == $order->get_id()) {
1086
+			$pay_url = add_query_arg('wc-stripe-confirmation', 1, $pay_url);
1087 1087
 		}
1088 1088
 		return $pay_url;
1089 1089
 	}
Please login to merge, or discard this patch.
includes/abstracts/abstract-wc-stripe-payment-gateway.php 1 patch
Spacing   +340 added lines, -341 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	 */
22 22
 	public function display_admin_settings_webhook_description() {
23 23
 		/* translators: 1) webhook url */
24
-		return sprintf( __( 'You must add the following webhook endpoint <strong style="background-color:#ddd;">&nbsp;%s&nbsp;</strong> to your <a href="https://dashboard.stripe.com/account/webhooks" target="_blank">Stripe account settings</a>. This will enable you to receive notifications on the charge statuses.', 'woocommerce-gateway-stripe' ), WC_Stripe_Helper::get_webhook_url() );
24
+		return sprintf(__('You must add the following webhook endpoint <strong style="background-color:#ddd;">&nbsp;%s&nbsp;</strong> to your <a href="https://dashboard.stripe.com/account/webhooks" target="_blank">Stripe account settings</a>. This will enable you to receive notifications on the charge statuses.', 'woocommerce-gateway-stripe'), WC_Stripe_Helper::get_webhook_url());
25 25
 	}
26 26
 
27 27
 	/**
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
 				<input id="wc-%1$s-new-payment-method" name="wc-%1$s-new-payment-method" type="checkbox" value="true" style="width:auto;" />
36 36
 				<label for="wc-%1$s-new-payment-method" style="display:inline;">%2$s</label>
37 37
 			</p>',
38
-			esc_attr( $this->id ),
39
-			esc_html( apply_filters( 'wc_stripe_save_to_account_text', __( 'Save payment information to my account for future purchases.', 'woocommerce-gateway-stripe' ) ) )
38
+			esc_attr($this->id),
39
+			esc_html(apply_filters('wc_stripe_save_to_account_text', __('Save payment information to my account for future purchases.', 'woocommerce-gateway-stripe')))
40 40
 		);
41 41
 	}
42 42
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 	 * @since 4.0.5
48 48
 	 * @param array $error
49 49
 	 */
50
-	public function is_retryable_error( $error ) {
50
+	public function is_retryable_error($error) {
51 51
 		return (
52 52
 			'invalid_request_error' === $error->type ||
53 53
 			'idempotency_error' === $error->type ||
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
 	 * @since 4.1.0
65 65
 	 * @param array $error
66 66
 	 */
67
-	public function is_same_idempotency_error( $error ) {
67
+	public function is_same_idempotency_error($error) {
68 68
 		return (
69 69
 			$error &&
70 70
 			'idempotency_error' === $error->type &&
71
-			preg_match( '/Keys for idempotent requests can only be used with the same parameters they were first used with./i', $error->message )
71
+			preg_match('/Keys for idempotent requests can only be used with the same parameters they were first used with./i', $error->message)
72 72
 		);
73 73
 	}
74 74
 
@@ -79,11 +79,11 @@  discard block
 block discarded – undo
79 79
 	 * @since 4.1.0
80 80
 	 * @param array $error
81 81
 	 */
82
-	public function is_no_such_customer_error( $error ) {
82
+	public function is_no_such_customer_error($error) {
83 83
 		return (
84 84
 			$error &&
85 85
 			'invalid_request_error' === $error->type &&
86
-			preg_match( '/No such customer/i', $error->message )
86
+			preg_match('/No such customer/i', $error->message)
87 87
 		);
88 88
 	}
89 89
 
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
 	 * @since 4.1.0
95 95
 	 * @param array $error
96 96
 	 */
97
-	public function is_no_such_token_error( $error ) {
97
+	public function is_no_such_token_error($error) {
98 98
 		return (
99 99
 			$error &&
100 100
 			'invalid_request_error' === $error->type &&
101
-			preg_match( '/No such token/i', $error->message )
101
+			preg_match('/No such token/i', $error->message)
102 102
 		);
103 103
 	}
104 104
 
@@ -109,11 +109,11 @@  discard block
 block discarded – undo
109 109
 	 * @since 4.1.0
110 110
 	 * @param array $error
111 111
 	 */
112
-	public function is_no_such_source_error( $error ) {
112
+	public function is_no_such_source_error($error) {
113 113
 		return (
114 114
 			$error &&
115 115
 			'invalid_request_error' === $error->type &&
116
-			preg_match( '/No such source/i', $error->message )
116
+			preg_match('/No such source/i', $error->message)
117 117
 		);
118 118
 	}
119 119
 
@@ -124,11 +124,11 @@  discard block
 block discarded – undo
124 124
 	 * @since 4.1.0
125 125
 	 * @param array $error
126 126
 	 */
127
-	public function is_no_linked_source_error( $error ) {
127
+	public function is_no_linked_source_error($error) {
128 128
 		return (
129 129
 			$error &&
130 130
 			'invalid_request_error' === $error->type &&
131
-			preg_match( '/does not have a linked source with ID/i', $error->message )
131
+			preg_match('/does not have a linked source with ID/i', $error->message)
132 132
 		);
133 133
 	}
134 134
 
@@ -141,13 +141,13 @@  discard block
 block discarded – undo
141 141
 	 * @param object $error
142 142
 	 * @return bool
143 143
 	 */
144
-	public function need_update_idempotency_key( $source_object, $error ) {
144
+	public function need_update_idempotency_key($source_object, $error) {
145 145
 		return (
146 146
 			$error &&
147 147
 			1 < $this->retry_interval &&
148
-			! empty( $source_object ) &&
148
+			! empty($source_object) &&
149 149
 			'chargeable' === $source_object->status &&
150
-			self::is_same_idempotency_error( $error )
150
+			self::is_same_idempotency_error($error)
151 151
 		);
152 152
 	}
153 153
 
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
 	 * @since 4.1.3
158 158
 	 */
159 159
 	public function is_available() {
160
-		if ( 'yes' === $this->enabled ) {
161
-			if ( ! $this->secret_key || ! $this->publishable_key ) {
160
+		if ('yes' === $this->enabled) {
161
+			if ( ! $this->secret_key || ! $this->publishable_key) {
162 162
 				return false;
163 163
 			}
164 164
 			return true;
@@ -175,12 +175,12 @@  discard block
 block discarded – undo
175 175
 	 * @param int $order_id
176 176
 	 * @return bool
177 177
 	 */
178
-	public function maybe_process_pre_orders( $order_id ) {
178
+	public function maybe_process_pre_orders($order_id) {
179 179
 		return (
180 180
 			WC_Stripe_Helper::is_pre_orders_exists() &&
181
-			$this->pre_orders->is_pre_order( $order_id ) &&
182
-			WC_Pre_Orders_Order::order_requires_payment_tokenization( $order_id ) &&
183
-			! is_wc_endpoint_url( 'order-pay' )
181
+			$this->pre_orders->is_pre_order($order_id) &&
182
+			WC_Pre_Orders_Order::order_requires_payment_tokenization($order_id) &&
183
+			! is_wc_endpoint_url('order-pay')
184 184
 		);
185 185
 	}
186 186
 
@@ -224,10 +224,10 @@  discard block
 block discarded – undo
224 224
 	 * @version 4.0.0
225 225
 	 * @param object $order
226 226
 	 */
227
-	public function validate_minimum_order_amount( $order ) {
228
-		if ( $order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
227
+	public function validate_minimum_order_amount($order) {
228
+		if ($order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount()) {
229 229
 			/* translators: 1) dollar amount */
230
-			throw new WC_Stripe_Exception( 'Did not meet minimum amount', sprintf( __( 'Sorry, the minimum allowed order total is %1$s to use this payment method.', 'woocommerce-gateway-stripe' ), wc_price( WC_Stripe_Helper::get_minimum_amount() / 100 ) ) );
230
+			throw new WC_Stripe_Exception('Did not meet minimum amount', sprintf(__('Sorry, the minimum allowed order total is %1$s to use this payment method.', 'woocommerce-gateway-stripe'), wc_price(WC_Stripe_Helper::get_minimum_amount() / 100)));
231 231
 		}
232 232
 	}
233 233
 
@@ -237,14 +237,14 @@  discard block
 block discarded – undo
237 237
 	 * @since 4.0.0
238 238
 	 * @version 4.0.0
239 239
 	 */
240
-	public function get_transaction_url( $order ) {
241
-		if ( $this->testmode ) {
240
+	public function get_transaction_url($order) {
241
+		if ($this->testmode) {
242 242
 			$this->view_transaction_url = 'https://dashboard.stripe.com/test/payments/%s';
243 243
 		} else {
244 244
 			$this->view_transaction_url = 'https://dashboard.stripe.com/payments/%s';
245 245
 		}
246 246
 
247
-		return parent::get_transaction_url( $order );
247
+		return parent::get_transaction_url($order);
248 248
 	}
249 249
 
250 250
 	/**
@@ -253,15 +253,15 @@  discard block
 block discarded – undo
253 253
 	 * @since 4.0.0
254 254
 	 * @version 4.0.0
255 255
 	 */
256
-	public function get_stripe_customer_id( $order ) {
257
-		$customer = get_user_meta( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true );
256
+	public function get_stripe_customer_id($order) {
257
+		$customer = get_user_meta(WC_Stripe_Helper::is_wc_lt('3.0') ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true);
258 258
 
259
-		if ( empty( $customer ) ) {
259
+		if (empty($customer)) {
260 260
 			// Try to get it via the order.
261
-			if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) {
262
-				return get_post_meta( $order->id, '_stripe_customer_id', true );
261
+			if (WC_Stripe_Helper::is_wc_lt('3.0')) {
262
+				return get_post_meta($order->id, '_stripe_customer_id', true);
263 263
 			} else {
264
-				return $order->get_meta( '_stripe_customer_id', true );
264
+				return $order->get_meta('_stripe_customer_id', true);
265 265
 			}
266 266
 		} else {
267 267
 			return $customer;
@@ -278,23 +278,23 @@  discard block
 block discarded – undo
278 278
 	 * @param object $order
279 279
 	 * @param int $id Stripe session id.
280 280
 	 */
281
-	public function get_stripe_return_url( $order = null, $id = null ) {
282
-		if ( is_object( $order ) ) {
283
-			if ( empty( $id ) ) {
281
+	public function get_stripe_return_url($order = null, $id = null) {
282
+		if (is_object($order)) {
283
+			if (empty($id)) {
284 284
 				$id = uniqid();
285 285
 			}
286 286
 
287
-			$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
287
+			$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
288 288
 
289 289
 			$args = array(
290 290
 				'utm_nooverride' => '1',
291 291
 				'order_id'       => $order_id,
292 292
 			);
293 293
 
294
-			return esc_url_raw( add_query_arg( $args, $this->get_return_url( $order ) ) );
294
+			return esc_url_raw(add_query_arg($args, $this->get_return_url($order)));
295 295
 		}
296 296
 
297
-		return esc_url_raw( add_query_arg( array( 'utm_nooverride' => '1' ), $this->get_return_url() ) );
297
+		return esc_url_raw(add_query_arg(array('utm_nooverride' => '1'), $this->get_return_url()));
298 298
 	}
299 299
 
300 300
 	/**
@@ -302,8 +302,8 @@  discard block
 block discarded – undo
302 302
 	 * @param  int  $order_id
303 303
 	 * @return boolean
304 304
 	 */
305
-	public function has_subscription( $order_id ) {
306
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
305
+	public function has_subscription($order_id) {
306
+		return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id)));
307 307
 	}
308 308
 
309 309
 	/**
@@ -315,34 +315,33 @@  discard block
 block discarded – undo
315 315
 	 * @param  object $prepared_source
316 316
 	 * @return array()
317 317
 	 */
318
-	public function generate_payment_request( $order, $prepared_source ) {
319
-		$settings              = get_option( 'woocommerce_stripe_settings', array() );
320
-		$statement_descriptor  = ! empty( $settings['statement_descriptor'] ) ? str_replace( "'", '', $settings['statement_descriptor'] ) : '';
321
-		$capture               = ! empty( $settings['capture'] ) && 'yes' === $settings['capture'] ? true : false;
318
+	public function generate_payment_request($order, $prepared_source) {
319
+		$settings              = get_option('woocommerce_stripe_settings', array());
320
+		$statement_descriptor  = ! empty($settings['statement_descriptor']) ? str_replace("'", '', $settings['statement_descriptor']) : '';
321
+		$capture               = ! empty($settings['capture']) && 'yes' === $settings['capture'] ? true : false;
322 322
 		$post_data             = array();
323
-		$post_data['currency'] = strtolower( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->get_order_currency() : $order->get_currency() );
324
-		$post_data['amount']   = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $post_data['currency'] );
323
+		$post_data['currency'] = strtolower(WC_Stripe_Helper::is_wc_lt('3.0') ? $order->get_order_currency() : $order->get_currency());
324
+		$post_data['amount']   = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $post_data['currency']);
325 325
 		/* translators: 1) blog name 2) order number */
326
-		$post_data['description'] = sprintf( __( '%1$s - Order %2$s', 'woocommerce-gateway-stripe' ), wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ), $order->get_order_number() );
327
-		$billing_email            = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_email : $order->get_billing_email();
328
-		$billing_first_name       = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_first_name : $order->get_billing_first_name();
329
-		$billing_last_name        = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_last_name : $order->get_billing_last_name();
326
+		$post_data['description'] = sprintf(__('%1$s - Order %2$s', 'woocommerce-gateway-stripe'), wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES), $order->get_order_number());
327
+		$billing_email            = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_email : $order->get_billing_email();
328
+		$billing_first_name       = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_first_name : $order->get_billing_first_name();
329
+		$billing_last_name        = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_last_name : $order->get_billing_last_name();
330 330
 
331
-		if ( ! empty( $billing_email ) && apply_filters( 'wc_stripe_send_stripe_receipt', false ) ) {
331
+		if ( ! empty($billing_email) && apply_filters('wc_stripe_send_stripe_receipt', false)) {
332 332
 			$post_data['receipt_email'] = $billing_email;
333 333
 		}
334 334
 
335
-		switch ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->payment_method : $order->get_payment_method() ) {
336
-			case 'stripe':
337
-				if ( ! empty( $statement_descriptor ) ) {
338
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
335
+		switch (WC_Stripe_Helper::is_wc_lt('3.0') ? $order->payment_method : $order->get_payment_method()) {
336
+			case 'stripe' : if ( ! empty($statement_descriptor)) {
337
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
339 338
 				}
340 339
 
341 340
 				$post_data['capture'] = $capture ? 'true' : 'false';
342 341
 				break;
343 342
 			case 'stripe_sepa':
344
-				if ( ! empty( $statement_descriptor ) ) {
345
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
343
+				if ( ! empty($statement_descriptor)) {
344
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
346 345
 				}
347 346
 				break;
348 347
 		}
@@ -350,25 +349,25 @@  discard block
 block discarded – undo
350 349
 		$post_data['expand[]'] = 'balance_transaction';
351 350
 
352 351
 		$metadata = array(
353
-			__( 'customer_name', 'woocommerce-gateway-stripe' ) => sanitize_text_field( $billing_first_name ) . ' ' . sanitize_text_field( $billing_last_name ),
354
-			__( 'customer_email', 'woocommerce-gateway-stripe' ) => sanitize_email( $billing_email ),
352
+			__('customer_name', 'woocommerce-gateway-stripe') => sanitize_text_field($billing_first_name) . ' ' . sanitize_text_field($billing_last_name),
353
+			__('customer_email', 'woocommerce-gateway-stripe') => sanitize_email($billing_email),
355 354
 			'order_id' => $order->get_order_number(),
356 355
 		);
357 356
 
358
-		if ( $this->has_subscription( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id() ) ) {
357
+		if ($this->has_subscription(WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id())) {
359 358
 			$metadata += array(
360 359
 				'payment_type' => 'recurring',
361
-				'site_url'     => esc_url( get_site_url() ),
360
+				'site_url'     => esc_url(get_site_url()),
362 361
 			);
363 362
 		}
364 363
 
365
-		$post_data['metadata'] = apply_filters( 'wc_stripe_payment_metadata', $metadata, $order, $prepared_source );
364
+		$post_data['metadata'] = apply_filters('wc_stripe_payment_metadata', $metadata, $order, $prepared_source);
366 365
 
367
-		if ( $prepared_source->customer ) {
366
+		if ($prepared_source->customer) {
368 367
 			$post_data['customer'] = $prepared_source->customer;
369 368
 		}
370 369
 
371
-		if ( $prepared_source->source ) {
370
+		if ($prepared_source->source) {
372 371
 			$post_data['source'] = $prepared_source->source;
373 372
 		}
374 373
 
@@ -380,72 +379,72 @@  discard block
 block discarded – undo
380 379
 		 * @param WC_Order $order
381 380
 		 * @param object $source
382 381
 		 */
383
-		return apply_filters( 'wc_stripe_generate_payment_request', $post_data, $order, $prepared_source );
382
+		return apply_filters('wc_stripe_generate_payment_request', $post_data, $order, $prepared_source);
384 383
 	}
385 384
 
386 385
 	/**
387 386
 	 * Store extra meta data for an order from a Stripe Response.
388 387
 	 */
389
-	public function process_response( $response, $order ) {
390
-		WC_Stripe_Logger::log( 'Processing response: ' . print_r( $response, true ) );
388
+	public function process_response($response, $order) {
389
+		WC_Stripe_Logger::log('Processing response: ' . print_r($response, true));
391 390
 
392
-		$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
393
-		$captured = ( isset( $response->captured ) && $response->captured ) ? 'yes' : 'no';
391
+		$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
392
+		$captured = (isset($response->captured) && $response->captured) ? 'yes' : 'no';
394 393
 
395 394
 		// Store charge data.
396
-		WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_stripe_charge_captured', $captured ) : $order->update_meta_data( '_stripe_charge_captured', $captured );
395
+		WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_stripe_charge_captured', $captured) : $order->update_meta_data('_stripe_charge_captured', $captured);
397 396
 
398
-		if ( isset( $response->balance_transaction ) ) {
399
-			$this->update_fees( $order, is_string( $response->balance_transaction ) ? $response->balance_transaction : $response->balance_transaction->id );
397
+		if (isset($response->balance_transaction)) {
398
+			$this->update_fees($order, is_string($response->balance_transaction) ? $response->balance_transaction : $response->balance_transaction->id);
400 399
 		}
401 400
 
402
-		if ( 'yes' === $captured ) {
401
+		if ('yes' === $captured) {
403 402
 			/**
404 403
 			 * Charge can be captured but in a pending state. Payment methods
405 404
 			 * that are asynchronous may take couple days to clear. Webhook will
406 405
 			 * take care of the status changes.
407 406
 			 */
408
-			if ( 'pending' === $response->status ) {
409
-				$order_stock_reduced = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? get_post_meta( $order_id, '_order_stock_reduced', true ) : $order->get_meta( '_order_stock_reduced', true );
407
+			if ('pending' === $response->status) {
408
+				$order_stock_reduced = WC_Stripe_Helper::is_wc_lt('3.0') ? get_post_meta($order_id, '_order_stock_reduced', true) : $order->get_meta('_order_stock_reduced', true);
410 409
 
411
-				if ( ! $order_stock_reduced ) {
412
-					WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
410
+				if ( ! $order_stock_reduced) {
411
+					WC_Stripe_Helper::is_wc_lt('3.0') ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
413 412
 				}
414 413
 
415
-				WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
414
+				WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
416 415
 				/* translators: transaction id */
417
-				$order->update_status( 'on-hold', sprintf( __( 'Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe' ), $response->id ) );
416
+				$order->update_status('on-hold', sprintf(__('Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe'), $response->id));
418 417
 			}
419 418
 
420
-			if ( 'succeeded' === $response->status ) {
421
-				$order->payment_complete( $response->id );
419
+			if ('succeeded' === $response->status) {
420
+				$order->payment_complete($response->id);
422 421
 
423 422
 				/* translators: transaction id */
424
-				$message = sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $response->id );
425
-				$order->add_order_note( $message );
423
+				$message = sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $response->id);
424
+				$order->add_order_note($message);
426 425
 			}
427 426
 
428
-			if ( 'failed' === $response->status ) {
429
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
430
-				$order->add_order_note( $localized_message );
431
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
427
+			if ('failed' === $response->status) {
428
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
429
+				$order->add_order_note($localized_message);
430
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
432 431
 			}
433 432
 		} else {
434
-			WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
433
+			WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
435 434
 
436
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
437
-				WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
435
+			if ($order->has_status(array('pending', 'failed'))) {
436
+				WC_Stripe_Helper::is_wc_lt('3.0') ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
438 437
 			}
439 438
 
440 439
 			/* translators: transaction id */
441
-			$order->update_status( 'on-hold', sprintf( __( 'Stripe charge authorized (Charge ID: %s). Process order to take payment, or cancel to remove the pre-authorization.', 'woocommerce-gateway-stripe' ), $response->id ) );
440
+			$order->update_status('on-hold', sprintf(__('Stripe charge authorized (Charge ID: %s). Process order to take payment, or cancel to remove the pre-authorization.', 'woocommerce-gateway-stripe'), $response->id));
442 441
 		}
443 442
 
444
-		if ( is_callable( array( $order, 'save' ) ) ) {
443
+		if (is_callable(array($order, 'save'))) {
445 444
 			$order->save();
446 445
 		}
447 446
 
448
-		do_action( 'wc_gateway_stripe_process_response', $response, $order );
447
+		do_action('wc_gateway_stripe_process_response', $response, $order);
449 448
 
450 449
 		return $response;
451 450
 	}
@@ -458,10 +457,10 @@  discard block
 block discarded – undo
458 457
 	 * @param int $order_id
459 458
 	 * @return null
460 459
 	 */
461
-	public function send_failed_order_email( $order_id ) {
460
+	public function send_failed_order_email($order_id) {
462 461
 		$emails = WC()->mailer()->get_emails();
463
-		if ( ! empty( $emails ) && ! empty( $order_id ) ) {
464
-			$emails['WC_Email_Failed_Order']->trigger( $order_id );
462
+		if ( ! empty($emails) && ! empty($order_id)) {
463
+			$emails['WC_Email_Failed_Order']->trigger($order_id);
465 464
 		}
466 465
 	}
467 466
 
@@ -473,36 +472,36 @@  discard block
 block discarded – undo
473 472
 	 * @param object $order
474 473
 	 * @return object $details
475 474
 	 */
476
-	public function get_owner_details( $order ) {
477
-		$billing_first_name = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_first_name : $order->get_billing_first_name();
478
-		$billing_last_name  = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_last_name : $order->get_billing_last_name();
475
+	public function get_owner_details($order) {
476
+		$billing_first_name = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_first_name : $order->get_billing_first_name();
477
+		$billing_last_name  = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_last_name : $order->get_billing_last_name();
479 478
 
480 479
 		$details = array();
481 480
 
482 481
 		$name  = $billing_first_name . ' ' . $billing_last_name;
483
-		$email = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_email : $order->get_billing_email();
484
-		$phone = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_phone : $order->get_billing_phone();
482
+		$email = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_email : $order->get_billing_email();
483
+		$phone = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_phone : $order->get_billing_phone();
485 484
 
486
-		if ( ! empty( $phone ) ) {
485
+		if ( ! empty($phone)) {
487 486
 			$details['phone'] = $phone;
488 487
 		}
489 488
 
490
-		if ( ! empty( $name ) ) {
489
+		if ( ! empty($name)) {
491 490
 			$details['name'] = $name;
492 491
 		}
493 492
 
494
-		if ( ! empty( $email ) ) {
493
+		if ( ! empty($email)) {
495 494
 			$details['email'] = $email;
496 495
 		}
497 496
 
498
-		$details['address']['line1']       = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_address_1 : $order->get_billing_address_1();
499
-		$details['address']['line2']       = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_address_2 : $order->get_billing_address_2();
500
-		$details['address']['state']       = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_state : $order->get_billing_state();
501
-		$details['address']['city']        = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_city : $order->get_billing_city();
502
-		$details['address']['postal_code'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_postcode : $order->get_billing_postcode();
503
-		$details['address']['country']     = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_country : $order->get_billing_country();
497
+		$details['address']['line1']       = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_address_1 : $order->get_billing_address_1();
498
+		$details['address']['line2']       = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_address_2 : $order->get_billing_address_2();
499
+		$details['address']['state']       = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_state : $order->get_billing_state();
500
+		$details['address']['city']        = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_city : $order->get_billing_city();
501
+		$details['address']['postal_code'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_postcode : $order->get_billing_postcode();
502
+		$details['address']['country']     = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_country : $order->get_billing_country();
504 503
 
505
-		return (object) apply_filters( 'wc_stripe_owner_details', $details, $order );
504
+		return (object) apply_filters('wc_stripe_owner_details', $details, $order);
506 505
 	}
507 506
 
508 507
 	/**
@@ -511,15 +510,15 @@  discard block
 block discarded – undo
511 510
 	 * @since 4.0.3
512 511
 	 * @param string $source_id The source ID to get source object for.
513 512
 	 */
514
-	public function get_source_object( $source_id = '' ) {
515
-		if ( empty( $source_id ) ) {
513
+	public function get_source_object($source_id = '') {
514
+		if (empty($source_id)) {
516 515
 			return '';
517 516
 		}
518 517
 
519
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id );
518
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source_id);
520 519
 
521
-		if ( ! empty( $source_object->error ) ) {
522
-			throw new WC_Stripe_Exception( print_r( $source_object, true ), $source_object->error->message );
520
+		if ( ! empty($source_object->error)) {
521
+			throw new WC_Stripe_Exception(print_r($source_object, true), $source_object->error->message);
523 522
 		}
524 523
 
525 524
 		return $source_object;
@@ -532,10 +531,10 @@  discard block
 block discarded – undo
532 531
 	 * @param object $source_object
533 532
 	 * @return bool
534 533
 	 */
535
-	public function is_prepaid_card( $source_object ) {
534
+	public function is_prepaid_card($source_object) {
536 535
 		return (
537 536
 			$source_object
538
-			&& ( 'token' === $source_object->object || 'source' === $source_object->object )
537
+			&& ('token' === $source_object->object || 'source' === $source_object->object)
539 538
 			&& 'prepaid' === $source_object->card->funding
540 539
 		);
541 540
 	}
@@ -547,8 +546,8 @@  discard block
 block discarded – undo
547 546
 	 * @param string $source_id
548 547
 	 * @return bool
549 548
 	 */
550
-	public function is_type_legacy_card( $source_id ) {
551
-		return ( preg_match( '/^card_/', $source_id ) );
549
+	public function is_type_legacy_card($source_id) {
550
+		return (preg_match('/^card_/', $source_id));
552 551
 	}
553 552
 
554 553
 	/**
@@ -558,9 +557,9 @@  discard block
 block discarded – undo
558 557
 	 * @return bool
559 558
 	 */
560 559
 	public function is_using_saved_payment_method() {
561
-		$payment_method = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe';
560
+		$payment_method = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe';
562 561
 
563
-		return ( isset( $_POST[ 'wc-' . $payment_method . '-payment-token' ] ) && 'new' !== $_POST[ 'wc-' . $payment_method . '-payment-token' ] );
562
+		return (isset($_POST['wc-' . $payment_method . '-payment-token']) && 'new' !== $_POST['wc-' . $payment_method . '-payment-token']);
564 563
 	}
565 564
 
566 565
 	/**
@@ -576,66 +575,66 @@  discard block
 block discarded – undo
576 575
 	 * @throws Exception When card was not added or for and invalid card.
577 576
 	 * @return object
578 577
 	 */
579
-	public function prepare_source( $user_id, $force_save_source = false, $existing_customer_id = null ) {
580
-		if ( ! empty( $existing_customer_id ) ) {
578
+	public function prepare_source($user_id, $force_save_source = false, $existing_customer_id = null) {
579
+		if ( ! empty($existing_customer_id)) {
581 580
 			$customer = new WC_Stripe_Customer();
582
-			$customer->set_id( $existing_customer_id );
581
+			$customer->set_id($existing_customer_id);
583 582
 		} else {
584
-			$customer = new WC_Stripe_Customer( $user_id );
583
+			$customer = new WC_Stripe_Customer($user_id);
585 584
 		}
586 585
 
587
-		$force_save_source = apply_filters( 'wc_stripe_force_save_source', $force_save_source, $customer );
586
+		$force_save_source = apply_filters('wc_stripe_force_save_source', $force_save_source, $customer);
588 587
 		$source_object     = '';
589 588
 		$source_id         = '';
590 589
 		$wc_token_id       = false;
591
-		$payment_method    = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe';
590
+		$payment_method    = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe';
592 591
 		$is_token          = false;
593 592
 
594 593
 		// New CC info was entered and we have a new source to process.
595
-		if ( ! empty( $_POST['stripe_source'] ) ) {
596
-			$source_object = self::get_source_object( wc_clean( $_POST['stripe_source'] ) );
594
+		if ( ! empty($_POST['stripe_source'])) {
595
+			$source_object = self::get_source_object(wc_clean($_POST['stripe_source']));
597 596
 			$source_id     = $source_object->id;
598 597
 
599 598
 			// This checks to see if customer opted to save the payment method to file.
600
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
599
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
601 600
 
602 601
 			/**
603 602
 			 * This is true if the user wants to store the card to their account.
604 603
 			 * Criteria to save to file is they are logged in, they opted to save or product requirements and the source is
605 604
 			 * actually reusable. Either that or force_save_source is true.
606 605
 			 */
607
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage ) || $force_save_source ) {
608
-				$response = $customer->add_source( $source_object->id );
606
+			if (($user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage) || $force_save_source) {
607
+				$response = $customer->add_source($source_object->id);
609 608
 
610
-				if ( ! empty( $response->error ) ) {
611
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
609
+				if ( ! empty($response->error)) {
610
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
612 611
 				}
613 612
 			}
614
-		} elseif ( $this->is_using_saved_payment_method() ) {
613
+		} elseif ($this->is_using_saved_payment_method()) {
615 614
 			// Use an existing token, and then process the payment.
616
-			$wc_token_id = wc_clean( $_POST[ 'wc-' . $payment_method . '-payment-token' ] );
617
-			$wc_token    = WC_Payment_Tokens::get( $wc_token_id );
615
+			$wc_token_id = wc_clean($_POST['wc-' . $payment_method . '-payment-token']);
616
+			$wc_token    = WC_Payment_Tokens::get($wc_token_id);
618 617
 
619
-			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id() ) {
620
-				WC()->session->set( 'refresh_totals', true );
621
-				throw new WC_Stripe_Exception( 'Invalid payment method', __( 'Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe' ) );
618
+			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id()) {
619
+				WC()->session->set('refresh_totals', true);
620
+				throw new WC_Stripe_Exception('Invalid payment method', __('Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe'));
622 621
 			}
623 622
 
624 623
 			$source_id = $wc_token->get_token();
625 624
 
626
-			if ( $this->is_type_legacy_card( $source_id ) ) {
625
+			if ($this->is_type_legacy_card($source_id)) {
627 626
 				$is_token = true;
628 627
 			}
629
-		} elseif ( isset( $_POST['stripe_token'] ) && 'new' !== $_POST['stripe_token'] ) {
630
-			$stripe_token     = wc_clean( $_POST['stripe_token'] );
631
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
628
+		} elseif (isset($_POST['stripe_token']) && 'new' !== $_POST['stripe_token']) {
629
+			$stripe_token     = wc_clean($_POST['stripe_token']);
630
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
632 631
 
633 632
 			// This is true if the user wants to store the card to their account.
634
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card ) || $force_save_source ) {
635
-				$response = $customer->add_source( $stripe_token );
633
+			if (($user_id && $this->saved_cards && $maybe_saved_card) || $force_save_source) {
634
+				$response = $customer->add_source($stripe_token);
636 635
 
637
-				if ( ! empty( $response->error ) ) {
638
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
636
+				if ( ! empty($response->error)) {
637
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
639 638
 				}
640 639
 			} else {
641 640
 				$source_id    = $stripe_token;
@@ -644,15 +643,15 @@  discard block
 block discarded – undo
644 643
 		}
645 644
 
646 645
 		$customer_id = $customer->get_id();
647
-		if ( ! $customer_id ) {
648
-			$customer->set_id( $customer->create_customer() );
646
+		if ( ! $customer_id) {
647
+			$customer->set_id($customer->create_customer());
649 648
 			$customer_id = $customer->get_id();
650 649
 		} else {
651 650
 			$customer->update_customer();
652 651
 		}
653 652
 
654
-		if ( empty( $source_object ) && ! $is_token ) {
655
-			$source_object = self::get_source_object( $source_id );
653
+		if (empty($source_object) && ! $is_token) {
654
+			$source_object = self::get_source_object($source_id);
656 655
 		}
657 656
 
658 657
 		return (object) array(
@@ -676,39 +675,39 @@  discard block
 block discarded – undo
676 675
 	 * @param object $order
677 676
 	 * @return object
678 677
 	 */
679
-	public function prepare_order_source( $order = null ) {
678
+	public function prepare_order_source($order = null) {
680 679
 		$stripe_customer = new WC_Stripe_Customer();
681 680
 		$stripe_source   = false;
682 681
 		$token_id        = false;
683 682
 		$source_object   = false;
684 683
 
685
-		if ( $order ) {
686
-			$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
684
+		if ($order) {
685
+			$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
687 686
 
688
-			$stripe_customer_id = get_post_meta( $order_id, '_stripe_customer_id', true );
687
+			$stripe_customer_id = get_post_meta($order_id, '_stripe_customer_id', true);
689 688
 
690
-			if ( $stripe_customer_id ) {
691
-				$stripe_customer->set_id( $stripe_customer_id );
689
+			if ($stripe_customer_id) {
690
+				$stripe_customer->set_id($stripe_customer_id);
692 691
 			}
693 692
 
694
-			$source_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? get_post_meta( $order_id, '_stripe_source_id', true ) : $order->get_meta( '_stripe_source_id', true );
693
+			$source_id = WC_Stripe_Helper::is_wc_lt('3.0') ? get_post_meta($order_id, '_stripe_source_id', true) : $order->get_meta('_stripe_source_id', true);
695 694
 
696 695
 			// Since 4.0.0, we changed card to source so we need to account for that.
697
-			if ( empty( $source_id ) ) {
698
-				$source_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? get_post_meta( $order_id, '_stripe_card_id', true ) : $order->get_meta( '_stripe_card_id', true );
696
+			if (empty($source_id)) {
697
+				$source_id = WC_Stripe_Helper::is_wc_lt('3.0') ? get_post_meta($order_id, '_stripe_card_id', true) : $order->get_meta('_stripe_card_id', true);
699 698
 
700 699
 				// Take this opportunity to update the key name.
701
-				WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_stripe_source_id', $source_id ) : $order->update_meta_data( '_stripe_source_id', $source_id );
700
+				WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_stripe_source_id', $source_id) : $order->update_meta_data('_stripe_source_id', $source_id);
702 701
 
703
-				if ( is_callable( array( $order, 'save' ) ) ) {
702
+				if (is_callable(array($order, 'save'))) {
704 703
 					$order->save();
705 704
 				}
706 705
 			}
707 706
 
708
-			if ( $source_id ) {
707
+			if ($source_id) {
709 708
 				$stripe_source = $source_id;
710
-				$source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id );
711
-			} elseif ( apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
709
+				$source_object = WC_Stripe_API::retrieve('sources/' . $source_id);
710
+			} elseif (apply_filters('wc_stripe_use_default_customer_source', true)) {
712 711
 				/*
713 712
 				 * We can attempt to charge the customer's default source
714 713
 				 * by sending empty source id.
@@ -733,27 +732,27 @@  discard block
 block discarded – undo
733 732
 	 * @param WC_Order $order For to which the source applies.
734 733
 	 * @param stdClass $source Source information.
735 734
 	 */
736
-	public function save_source_to_order( $order, $source ) {
737
-		$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
735
+	public function save_source_to_order($order, $source) {
736
+		$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
738 737
 
739 738
 		// Store source in the order.
740
-		if ( $source->customer ) {
741
-			if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) {
742
-				update_post_meta( $order_id, '_stripe_customer_id', $source->customer );
739
+		if ($source->customer) {
740
+			if (WC_Stripe_Helper::is_wc_lt('3.0')) {
741
+				update_post_meta($order_id, '_stripe_customer_id', $source->customer);
743 742
 			} else {
744
-				$order->update_meta_data( '_stripe_customer_id', $source->customer );
743
+				$order->update_meta_data('_stripe_customer_id', $source->customer);
745 744
 			}
746 745
 		}
747 746
 
748
-		if ( $source->source ) {
749
-			if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) {
750
-				update_post_meta( $order_id, '_stripe_source_id', $source->source );
747
+		if ($source->source) {
748
+			if (WC_Stripe_Helper::is_wc_lt('3.0')) {
749
+				update_post_meta($order_id, '_stripe_source_id', $source->source);
751 750
 			} else {
752
-				$order->update_meta_data( '_stripe_source_id', $source->source );
751
+				$order->update_meta_data('_stripe_source_id', $source->source);
753 752
 			}
754 753
 		}
755 754
 
756
-		if ( is_callable( array( $order, 'save' ) ) ) {
755
+		if (is_callable(array($order, 'save'))) {
757 756
 			$order->save();
758 757
 		}
759 758
 	}
@@ -767,38 +766,38 @@  discard block
 block discarded – undo
767 766
 	 * @param object $order The order object
768 767
 	 * @param int $balance_transaction_id
769 768
 	 */
770
-	public function update_fees( $order, $balance_transaction_id ) {
771
-		$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
769
+	public function update_fees($order, $balance_transaction_id) {
770
+		$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
772 771
 
773
-		$balance_transaction = WC_Stripe_API::retrieve( 'balance/history/' . $balance_transaction_id );
772
+		$balance_transaction = WC_Stripe_API::retrieve('balance/history/' . $balance_transaction_id);
774 773
 
775
-		if ( empty( $balance_transaction->error ) ) {
776
-			if ( isset( $balance_transaction ) && isset( $balance_transaction->fee ) ) {
774
+		if (empty($balance_transaction->error)) {
775
+			if (isset($balance_transaction) && isset($balance_transaction->fee)) {
777 776
 				// Fees and Net needs to both come from Stripe to be accurate as the returned
778 777
 				// values are in the local currency of the Stripe account, not from WC.
779
-				$fee_refund = ! empty( $balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'fee' ) : 0;
780
-				$net_refund = ! empty( $balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'net' ) : 0;
778
+				$fee_refund = ! empty($balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'fee') : 0;
779
+				$net_refund = ! empty($balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'net') : 0;
781 780
 
782 781
 				// Current data fee & net.
783
-				$fee_current = WC_Stripe_Helper::get_stripe_fee( $order );
784
-				$net_current = WC_Stripe_Helper::get_stripe_net( $order );
782
+				$fee_current = WC_Stripe_Helper::get_stripe_fee($order);
783
+				$net_current = WC_Stripe_Helper::get_stripe_net($order);
785 784
 
786 785
 				// Calculation.
787 786
 				$fee = (float) $fee_current + (float) $fee_refund;
788 787
 				$net = (float) $net_current + (float) $net_refund;
789 788
 
790
-				WC_Stripe_Helper::update_stripe_fee( $order, $fee );
791
-				WC_Stripe_Helper::update_stripe_net( $order, $net );
789
+				WC_Stripe_Helper::update_stripe_fee($order, $fee);
790
+				WC_Stripe_Helper::update_stripe_net($order, $net);
792 791
 
793
-				$currency = ! empty( $balance_transaction->currency ) ? strtoupper( $balance_transaction->currency ) : null;
794
-				WC_Stripe_Helper::update_stripe_currency( $order, $currency );
792
+				$currency = ! empty($balance_transaction->currency) ? strtoupper($balance_transaction->currency) : null;
793
+				WC_Stripe_Helper::update_stripe_currency($order, $currency);
795 794
 
796
-				if ( is_callable( array( $order, 'save' ) ) ) {
795
+				if (is_callable(array($order, 'save'))) {
797 796
 					$order->save();
798 797
 				}
799 798
 			}
800 799
 		} else {
801
-			WC_Stripe_Logger::log( "Unable to update fees/net meta for order: {$order_id}" );
800
+			WC_Stripe_Logger::log("Unable to update fees/net meta for order: {$order_id}");
802 801
 		}
803 802
 	}
804 803
 
@@ -811,99 +810,99 @@  discard block
 block discarded – undo
811 810
 	 * @param  float $amount
812 811
 	 * @return bool
813 812
 	 */
814
-	public function process_refund( $order_id, $amount = null, $reason = '' ) {
815
-		$order = wc_get_order( $order_id );
813
+	public function process_refund($order_id, $amount = null, $reason = '') {
814
+		$order = wc_get_order($order_id);
816 815
 
817
-		if ( ! $order ) {
816
+		if ( ! $order) {
818 817
 			return false;
819 818
 		}
820 819
 
821 820
 		$request = array();
822 821
 
823
-		if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) {
824
-			$order_currency = get_post_meta( $order_id, '_order_currency', true );
825
-			$captured       = get_post_meta( $order_id, '_stripe_charge_captured', true );
826
-			$charge_id      = get_post_meta( $order_id, '_transaction_id', true );
822
+		if (WC_Stripe_Helper::is_wc_lt('3.0')) {
823
+			$order_currency = get_post_meta($order_id, '_order_currency', true);
824
+			$captured       = get_post_meta($order_id, '_stripe_charge_captured', true);
825
+			$charge_id      = get_post_meta($order_id, '_transaction_id', true);
827 826
 		} else {
828 827
 			$order_currency = $order->get_currency();
829
-			$captured       = $order->get_meta( '_stripe_charge_captured', true );
828
+			$captured       = $order->get_meta('_stripe_charge_captured', true);
830 829
 			$charge_id      = $order->get_transaction_id();
831 830
 		}
832 831
 
833
-		if ( ! $charge_id ) {
832
+		if ( ! $charge_id) {
834 833
 			return false;
835 834
 		}
836 835
 
837
-		if ( ! is_null( $amount ) ) {
838
-			$request['amount'] = WC_Stripe_Helper::get_stripe_amount( $amount, $order_currency );
836
+		if ( ! is_null($amount)) {
837
+			$request['amount'] = WC_Stripe_Helper::get_stripe_amount($amount, $order_currency);
839 838
 		}
840 839
 
841 840
 		// If order is only authorized, don't pass amount.
842
-		if ( 'yes' !== $captured ) {
843
-			unset( $request['amount'] );
841
+		if ('yes' !== $captured) {
842
+			unset($request['amount']);
844 843
 		}
845 844
 
846
-		if ( $reason ) {
845
+		if ($reason) {
847 846
 			$request['metadata'] = array(
848 847
 				'reason' => $reason,
849 848
 			);
850 849
 		}
851 850
 
852 851
 		$request['charge'] = $charge_id;
853
-		WC_Stripe_Logger::log( "Info: Beginning refund for order {$charge_id} for the amount of {$amount}" );
852
+		WC_Stripe_Logger::log("Info: Beginning refund for order {$charge_id} for the amount of {$amount}");
854 853
 
855
-		$request = apply_filters( 'wc_stripe_refund_request', $request, $order );
854
+		$request = apply_filters('wc_stripe_refund_request', $request, $order);
856 855
 
857
-		$intent = $this->get_intent_from_order( $order );
856
+		$intent = $this->get_intent_from_order($order);
858 857
 		$intent_cancelled = false;
859
-		if ( $intent ) {
858
+		if ($intent) {
860 859
 			// If the order has a Payment Intent pending capture, then the Intent itself must be refunded (cancelled), not the Charge
861
-			if ( ! empty( $intent->error ) ) {
860
+			if ( ! empty($intent->error)) {
862 861
 				$response = $intent;
863 862
 				$intent_cancelled = true;
864
-			} elseif ( 'requires_capture' === $intent->status ) {
863
+			} elseif ('requires_capture' === $intent->status) {
865 864
 				$result = WC_Stripe_API::request(
866 865
 					array(),
867 866
 					'payment_intents/' . $intent->id . '/cancel'
868 867
 				);
869 868
 				$intent_cancelled = true;
870 869
 
871
-				if ( ! empty( $result->error ) ) {
870
+				if ( ! empty($result->error)) {
872 871
 					$response = $result;
873 872
 				} else {
874
-					$charge = end( $result->charges->data );
875
-					$response = end( $charge->refunds->data );
873
+					$charge = end($result->charges->data);
874
+					$response = end($charge->refunds->data);
876 875
 				}
877 876
 			}
878 877
 		}
879 878
 
880
-		if ( ! $intent_cancelled ) {
881
-			$response = WC_Stripe_API::request( $request, 'refunds' );
879
+		if ( ! $intent_cancelled) {
880
+			$response = WC_Stripe_API::request($request, 'refunds');
882 881
 		}
883 882
 
884
-		if ( ! empty( $response->error ) ) {
885
-			WC_Stripe_Logger::log( 'Error: ' . $response->error->message );
883
+		if ( ! empty($response->error)) {
884
+			WC_Stripe_Logger::log('Error: ' . $response->error->message);
886 885
 
887 886
 			return $response;
888 887
 
889
-		} elseif ( ! empty( $response->id ) ) {
890
-			WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_stripe_refund_id', $response->id ) : $order->update_meta_data( '_stripe_refund_id', $response->id );
888
+		} elseif ( ! empty($response->id)) {
889
+			WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_stripe_refund_id', $response->id) : $order->update_meta_data('_stripe_refund_id', $response->id);
891 890
 
892
-			$amount = wc_price( $response->amount / 100 );
891
+			$amount = wc_price($response->amount / 100);
893 892
 
894
-			if ( in_array( strtolower( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->get_order_currency() : $order->get_currency() ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
895
-				$amount = wc_price( $response->amount );
893
+			if (in_array(strtolower(WC_Stripe_Helper::is_wc_lt('3.0') ? $order->get_order_currency() : $order->get_currency()), WC_Stripe_Helper::no_decimal_currencies())) {
894
+				$amount = wc_price($response->amount);
896 895
 			}
897 896
 
898
-			if ( isset( $response->balance_transaction ) ) {
899
-				$this->update_fees( $order, $response->balance_transaction );
897
+			if (isset($response->balance_transaction)) {
898
+				$this->update_fees($order, $response->balance_transaction);
900 899
 			}
901 900
 
902 901
 			/* translators: 1) dollar amount 2) transaction id 3) refund message */
903
-			$refund_message = ( isset( $captured ) && 'yes' === $captured ) ? sprintf( __( 'Refunded %1$s - Refund ID: %2$s - Reason: %3$s', 'woocommerce-gateway-stripe' ), $amount, $response->id, $reason ) : __( 'Pre-Authorization Released', 'woocommerce-gateway-stripe' );
902
+			$refund_message = (isset($captured) && 'yes' === $captured) ? sprintf(__('Refunded %1$s - Refund ID: %2$s - Reason: %3$s', 'woocommerce-gateway-stripe'), $amount, $response->id, $reason) : __('Pre-Authorization Released', 'woocommerce-gateway-stripe');
904 903
 
905
-			$order->add_order_note( $refund_message );
906
-			WC_Stripe_Logger::log( 'Success: ' . html_entity_decode( wp_strip_all_tags( $refund_message ) ) );
904
+			$order->add_order_note($refund_message);
905
+			WC_Stripe_Logger::log('Success: ' . html_entity_decode(wp_strip_all_tags($refund_message)));
907 906
 
908 907
 			return true;
909 908
 		}
@@ -918,46 +917,46 @@  discard block
 block discarded – undo
918 917
 	 */
919 918
 	public function add_payment_method() {
920 919
 		$error     = false;
921
-		$error_msg = __( 'There was a problem adding the payment method.', 'woocommerce-gateway-stripe' );
920
+		$error_msg = __('There was a problem adding the payment method.', 'woocommerce-gateway-stripe');
922 921
 		$source_id = '';
923 922
 
924
-		if ( empty( $_POST['stripe_source'] ) && empty( $_POST['stripe_token'] ) || ! is_user_logged_in() ) {
923
+		if (empty($_POST['stripe_source']) && empty($_POST['stripe_token']) || ! is_user_logged_in()) {
925 924
 			$error = true;
926 925
 		}
927 926
 
928
-		$stripe_customer = new WC_Stripe_Customer( get_current_user_id() );
927
+		$stripe_customer = new WC_Stripe_Customer(get_current_user_id());
929 928
 
930
-		$source = ! empty( $_POST['stripe_source'] ) ? wc_clean( $_POST['stripe_source'] ) : '';
929
+		$source = ! empty($_POST['stripe_source']) ? wc_clean($_POST['stripe_source']) : '';
931 930
 
932
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source );
931
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source);
933 932
 
934
-		if ( isset( $source_object ) ) {
935
-			if ( ! empty( $source_object->error ) ) {
933
+		if (isset($source_object)) {
934
+			if ( ! empty($source_object->error)) {
936 935
 				$error = true;
937 936
 			}
938 937
 
939 938
 			$source_id = $source_object->id;
940
-		} elseif ( isset( $_POST['stripe_token'] ) ) {
941
-			$source_id = wc_clean( $_POST['stripe_token'] );
939
+		} elseif (isset($_POST['stripe_token'])) {
940
+			$source_id = wc_clean($_POST['stripe_token']);
942 941
 		}
943 942
 
944
-		$response = $stripe_customer->add_source( $source_id );
943
+		$response = $stripe_customer->add_source($source_id);
945 944
 
946
-		if ( ! $response || is_wp_error( $response ) || ! empty( $response->error ) ) {
945
+		if ( ! $response || is_wp_error($response) || ! empty($response->error)) {
947 946
 			$error = true;
948 947
 		}
949 948
 
950
-		if ( $error ) {
951
-			wc_add_notice( $error_msg, 'error' );
952
-			WC_Stripe_Logger::log( 'Add payment method Error: ' . $error_msg );
949
+		if ($error) {
950
+			wc_add_notice($error_msg, 'error');
951
+			WC_Stripe_Logger::log('Add payment method Error: ' . $error_msg);
953 952
 			return;
954 953
 		}
955 954
 
956
-		do_action( 'wc_stripe_add_payment_method_' . $_POST['payment_method'] . '_success', $source_id, $source_object );
955
+		do_action('wc_stripe_add_payment_method_' . $_POST['payment_method'] . '_success', $source_id, $source_object);
957 956
 
958 957
 		return array(
959 958
 			'result'   => 'success',
960
-			'redirect' => wc_get_endpoint_url( 'payment-methods' ),
959
+			'redirect' => wc_get_endpoint_url('payment-methods'),
961 960
 		);
962 961
 	}
963 962
 
@@ -974,10 +973,10 @@  discard block
 block discarded – undo
974 973
 		 * Stripe expects Norwegian to only be passed NO.
975 974
 		 * But WP has different dialects.
976 975
 		 */
977
-		if ( 'NO' === substr( $locale, 3, 2 ) ) {
976
+		if ('NO' === substr($locale, 3, 2)) {
978 977
 			$locale = 'no';
979 978
 		} else {
980
-			$locale = substr( get_locale(), 0, 2 );
979
+			$locale = substr(get_locale(), 0, 2);
981 980
 		}
982 981
 
983 982
 		return $locale;
@@ -991,9 +990,9 @@  discard block
 block discarded – undo
991 990
 	 * @param string $idempotency_key
992 991
 	 * @param array $request
993 992
 	 */
994
-	public function change_idempotency_key( $idempotency_key, $request ) {
995
-		$customer = ! empty( $request['customer'] ) ? $request['customer'] : '';
996
-		$source   = ! empty( $request['source'] ) ? $request['source'] : $customer;
993
+	public function change_idempotency_key($idempotency_key, $request) {
994
+		$customer = ! empty($request['customer']) ? $request['customer'] : '';
995
+		$source   = ! empty($request['source']) ? $request['source'] : $customer;
997 996
 		$count    = $this->retry_interval;
998 997
 
999 998
 		return $request['metadata']['order_id'] . '-' . $count . '-' . $source;
@@ -1007,8 +1006,8 @@  discard block
 block discarded – undo
1007 1006
 	 * @since 4.0.6
1008 1007
 	 * @param array $headers
1009 1008
 	 */
1010
-	public function is_original_request( $headers ) {
1011
-		if ( $headers['original-request'] === $headers['request-id'] ) {
1009
+	public function is_original_request($headers) {
1010
+		if ($headers['original-request'] === $headers['request-id']) {
1012 1011
 			return true;
1013 1012
 		}
1014 1013
 
@@ -1022,27 +1021,27 @@  discard block
 block discarded – undo
1022 1021
 	 * @param object   $prepared_source The source that is used for the payment.
1023 1022
 	 * @return array                    The arguments for the request.
1024 1023
 	 */
1025
-	public function generate_create_intent_request( $order, $prepared_source ) {
1024
+	public function generate_create_intent_request($order, $prepared_source) {
1026 1025
 		// The request for a charge contains metadata for the intent.
1027
-		$full_request = $this->generate_payment_request( $order, $prepared_source );
1026
+		$full_request = $this->generate_payment_request($order, $prepared_source);
1028 1027
 
1029 1028
 		$request = array(
1030 1029
 			'source'               => $prepared_source->source,
1031
-			'amount'               => WC_Stripe_Helper::get_stripe_amount( $order->get_total() ),
1032
-			'currency'             => strtolower( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->get_order_currency() : $order->get_currency() ),
1030
+			'amount'               => WC_Stripe_Helper::get_stripe_amount($order->get_total()),
1031
+			'currency'             => strtolower(WC_Stripe_Helper::is_wc_lt('3.0') ? $order->get_order_currency() : $order->get_currency()),
1033 1032
 			'description'          => $full_request['description'],
1034 1033
 			'metadata'             => $full_request['metadata'],
1035
-			'capture_method'       => ( 'true' === $full_request['capture'] ) ? 'automatic' : 'manual',
1034
+			'capture_method'       => ('true' === $full_request['capture']) ? 'automatic' : 'manual',
1036 1035
 			'payment_method_types' => array(
1037 1036
 				'card',
1038 1037
 			),
1039 1038
 		);
1040 1039
 
1041
-		if ( $prepared_source->customer ) {
1040
+		if ($prepared_source->customer) {
1042 1041
 			$request['customer'] = $prepared_source->customer;
1043 1042
 		}
1044 1043
 
1045
-		if ( isset( $full_request['statement_descriptor'] ) ) {
1044
+		if (isset($full_request['statement_descriptor'])) {
1046 1045
 			$request['statement_descriptor'] = $full_request['statement_descriptor'];
1047 1046
 		}
1048 1047
 
@@ -1054,7 +1053,7 @@  discard block
 block discarded – undo
1054 1053
 		 * @param WC_Order $order
1055 1054
 		 * @param object $source
1056 1055
 		 */
1057
-		return apply_filters( 'wc_stripe_generate_create_intent_request', $request, $order, $prepared_source );
1056
+		return apply_filters('wc_stripe_generate_create_intent_request', $request, $order, $prepared_source);
1058 1057
 	}
1059 1058
 
1060 1059
 	/**
@@ -1064,20 +1063,20 @@  discard block
 block discarded – undo
1064 1063
 	 * @param object   $prepared_source The source that is used for the payment.
1065 1064
 	 * @return object                   An intent or an error.
1066 1065
 	 */
1067
-	public function create_intent( $order, $prepared_source ) {
1068
-		$request = $this->generate_create_intent_request( $order, $prepared_source );
1066
+	public function create_intent($order, $prepared_source) {
1067
+		$request = $this->generate_create_intent_request($order, $prepared_source);
1069 1068
 
1070 1069
 		// Create an intent that awaits an action.
1071
-		$intent = WC_Stripe_API::request( $request, 'payment_intents' );
1072
-		if ( ! empty( $intent->error ) ) {
1070
+		$intent = WC_Stripe_API::request($request, 'payment_intents');
1071
+		if ( ! empty($intent->error)) {
1073 1072
 			return $intent;
1074 1073
 		}
1075 1074
 
1076
-		$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
1077
-		WC_Stripe_Logger::log( "Stripe PaymentIntent $intent->id initiated for order $order_id" );
1075
+		$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
1076
+		WC_Stripe_Logger::log("Stripe PaymentIntent $intent->id initiated for order $order_id");
1078 1077
 
1079 1078
 		// Save the intent ID to the order.
1080
-		$this->save_intent_to_order( $order, $intent );
1079
+		$this->save_intent_to_order($order, $intent);
1081 1080
 
1082 1081
 		return $intent;
1083 1082
 	}
@@ -1090,27 +1089,27 @@  discard block
 block discarded – undo
1090 1089
 	 * @param object   $prepared_source Currently selected source.
1091 1090
 	 * @return object                   An updated intent.
1092 1091
 	 */
1093
-	public function update_existing_intent( $intent, $order, $prepared_source ) {
1092
+	public function update_existing_intent($intent, $order, $prepared_source) {
1094 1093
 		$request = array();
1095 1094
 
1096
-		if ( $prepared_source->source !== $intent->source ) {
1095
+		if ($prepared_source->source !== $intent->source) {
1097 1096
 			$request['source'] = $prepared_source->source;
1098 1097
 		}
1099 1098
 
1100
-		$new_amount = WC_Stripe_Helper::get_stripe_amount( $order->get_total() );
1101
-		if ( $intent->amount !== $new_amount ) {
1099
+		$new_amount = WC_Stripe_Helper::get_stripe_amount($order->get_total());
1100
+		if ($intent->amount !== $new_amount) {
1102 1101
 			$request['amount'] = $new_amount;
1103 1102
 		}
1104 1103
 
1105
-		if ( $prepared_source->customer && $intent->customer !== $prepared_source->customer ) {
1104
+		if ($prepared_source->customer && $intent->customer !== $prepared_source->customer) {
1106 1105
 			$request['customer'] = $prepared_source->customer;
1107 1106
 		}
1108 1107
 
1109
-		if ( empty( $request ) ) {
1108
+		if (empty($request)) {
1110 1109
 			return $intent;
1111 1110
 		}
1112 1111
 
1113
-		return WC_Stripe_API::request( $request, "payment_intents/$intent->id" );
1112
+		return WC_Stripe_API::request($request, "payment_intents/$intent->id");
1114 1113
 	}
1115 1114
 
1116 1115
 	/**
@@ -1122,8 +1121,8 @@  discard block
 block discarded – undo
1122 1121
 	 * @param object   $prepared_source The source that is being charged.
1123 1122
 	 * @return object                   Either an error or the updated intent.
1124 1123
 	 */
1125
-	public function confirm_intent( $intent, $order, $prepared_source ) {
1126
-		if ( 'requires_confirmation' !== $intent->status ) {
1124
+	public function confirm_intent($intent, $order, $prepared_source) {
1125
+		if ('requires_confirmation' !== $intent->status) {
1127 1126
 			return $intent;
1128 1127
 		}
1129 1128
 
@@ -1132,18 +1131,18 @@  discard block
 block discarded – undo
1132 1131
 			'source' => $prepared_source->source,
1133 1132
 		);
1134 1133
 
1135
-		$confirmed_intent = WC_Stripe_API::request( $confirm_request, "payment_intents/$intent->id/confirm" );
1134
+		$confirmed_intent = WC_Stripe_API::request($confirm_request, "payment_intents/$intent->id/confirm");
1136 1135
 
1137
-		if ( ! empty( $confirmed_intent->error ) ) {
1136
+		if ( ! empty($confirmed_intent->error)) {
1138 1137
 			return $confirmed_intent;
1139 1138
 		}
1140 1139
 
1141 1140
 		// Save a note about the status of the intent.
1142
-		$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
1143
-		if ( 'succeeded' === $confirmed_intent->status ) {
1144
-			WC_Stripe_Logger::log( "Stripe PaymentIntent $intent->id succeeded for order $order_id" );
1145
-		} elseif ( 'requires_action' === $confirmed_intent->status ) {
1146
-			WC_Stripe_Logger::log( "Stripe PaymentIntent $intent->id requires authentication for order $order_id" );
1141
+		$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
1142
+		if ('succeeded' === $confirmed_intent->status) {
1143
+			WC_Stripe_Logger::log("Stripe PaymentIntent $intent->id succeeded for order $order_id");
1144
+		} elseif ('requires_action' === $confirmed_intent->status) {
1145
+			WC_Stripe_Logger::log("Stripe PaymentIntent $intent->id requires authentication for order $order_id");
1147 1146
 		}
1148 1147
 
1149 1148
 		return $confirmed_intent;
@@ -1156,16 +1155,16 @@  discard block
 block discarded – undo
1156 1155
 	 * @param WC_Order $order For to which the source applies.
1157 1156
 	 * @param stdClass $intent Payment intent information.
1158 1157
 	 */
1159
-	public function save_intent_to_order( $order, $intent ) {
1160
-		$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
1158
+	public function save_intent_to_order($order, $intent) {
1159
+		$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
1161 1160
 
1162
-		if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) {
1163
-			update_post_meta( $order_id, '_stripe_intent_id', $intent->id );
1161
+		if (WC_Stripe_Helper::is_wc_lt('3.0')) {
1162
+			update_post_meta($order_id, '_stripe_intent_id', $intent->id);
1164 1163
 		} else {
1165
-			$order->update_meta_data( '_stripe_intent_id', $intent->id );
1164
+			$order->update_meta_data('_stripe_intent_id', $intent->id);
1166 1165
 		}
1167 1166
 
1168
-		if ( is_callable( array( $order, 'save' ) ) ) {
1167
+		if (is_callable(array($order, 'save'))) {
1169 1168
 			$order->save();
1170 1169
 		}
1171 1170
 	}
@@ -1177,28 +1176,28 @@  discard block
 block discarded – undo
1177 1176
 	 * @param WC_Order $order The order to retrieve an intent for.
1178 1177
 	 * @return obect|bool     Either the intent object or `false`.
1179 1178
 	 */
1180
-	public function get_intent_from_order( $order ) {
1181
-		$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
1179
+	public function get_intent_from_order($order) {
1180
+		$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
1182 1181
 
1183
-		if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) {
1184
-			$intent_id = get_post_meta( $order_id, '_stripe_intent_id', true );
1182
+		if (WC_Stripe_Helper::is_wc_lt('3.0')) {
1183
+			$intent_id = get_post_meta($order_id, '_stripe_intent_id', true);
1185 1184
 		} else {
1186
-			$intent_id = $order->get_meta( '_stripe_intent_id' );
1185
+			$intent_id = $order->get_meta('_stripe_intent_id');
1187 1186
 		}
1188 1187
 
1189
-		if ( $intent_id ) {
1190
-			return WC_Stripe_API::request( array(), "payment_intents/$intent_id", 'GET' );
1188
+		if ($intent_id) {
1189
+			return WC_Stripe_API::request(array(), "payment_intents/$intent_id", 'GET');
1191 1190
 		}
1192 1191
 
1193 1192
 		// The order doesn't have a payment intent, but it may have a setup intent.
1194
-		if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) {
1195
-			$intent_id = get_post_meta( $order_id, '_stripe_setup_intent', true );
1193
+		if (WC_Stripe_Helper::is_wc_lt('3.0')) {
1194
+			$intent_id = get_post_meta($order_id, '_stripe_setup_intent', true);
1196 1195
 		} else {
1197
-			$intent_id = $order->get_meta( '_stripe_setup_intent' );
1196
+			$intent_id = $order->get_meta('_stripe_setup_intent');
1198 1197
 		}
1199 1198
 
1200
-		if ( $intent_id ) {
1201
-			return WC_Stripe_API::request( array(), "setup_intents/$intent_id", 'GET' );
1199
+		if ($intent_id) {
1200
+			return WC_Stripe_API::request(array(), "setup_intents/$intent_id", 'GET');
1202 1201
 		}
1203 1202
 
1204 1203
 		return false;
@@ -1212,18 +1211,18 @@  discard block
 block discarded – undo
1212 1211
 	 * @param stdClass $intent The intent that is being processed.
1213 1212
 	 * @return bool            A flag that indicates whether the order is already locked.
1214 1213
 	 */
1215
-	public function lock_order_payment( $order, $intent ) {
1216
-		$order_id       = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
1214
+	public function lock_order_payment($order, $intent) {
1215
+		$order_id       = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
1217 1216
 		$transient_name = 'wc_stripe_processing_intent_' . $order_id;
1218
-		$processing     = get_transient( $transient_name );
1217
+		$processing     = get_transient($transient_name);
1219 1218
 
1220 1219
 		// Block the process if the same intent is already being handled.
1221
-		if ( $processing === $intent->id ) {
1220
+		if ($processing === $intent->id) {
1222 1221
 			return true;
1223 1222
 		}
1224 1223
 
1225 1224
 		// Save the new intent as a transient, eventually overwriting another one.
1226
-		set_transient( $transient_name, $intent->id, 5 * MINUTE_IN_SECONDS );
1225
+		set_transient($transient_name, $intent->id, 5 * MINUTE_IN_SECONDS);
1227 1226
 
1228 1227
 		return false;
1229 1228
 	}
@@ -1234,9 +1233,9 @@  discard block
 block discarded – undo
1234 1233
 	 * @since 4.2
1235 1234
 	 * @param WC_Order $order The order that is being unlocked.
1236 1235
 	 */
1237
-	public function unlock_order_payment( $order ) {
1238
-		$order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
1239
-		delete_transient( 'wc_stripe_processing_intent_' . $order_id );
1236
+	public function unlock_order_payment($order) {
1237
+		$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
1238
+		delete_transient('wc_stripe_processing_intent_' . $order_id);
1240 1239
 	}
1241 1240
 
1242 1241
 	/**
@@ -1246,9 +1245,9 @@  discard block
 block discarded – undo
1246 1245
 	 * @param object $response The response from Stripe.
1247 1246
 	 * @return boolean Whether or not it's a 'authentication_required' error
1248 1247
 	 */
1249
-	public function is_authentication_required_for_payment( $response ) {
1250
-		return ( ! empty( $response->error ) && 'authentication_required' === $response->error->code )
1251
-			|| ( ! empty( $response->last_payment_error ) && 'authentication_required' === $response->last_payment_error->code );
1248
+	public function is_authentication_required_for_payment($response) {
1249
+		return ( ! empty($response->error) && 'authentication_required' === $response->error->code)
1250
+			|| ( ! empty($response->last_payment_error) && 'authentication_required' === $response->last_payment_error->code);
1252 1251
 	}
1253 1252
 
1254 1253
 	/**
@@ -1258,21 +1257,21 @@  discard block
 block discarded – undo
1258 1257
 	 * @param object   $prepared_source The source, entered/chosen by the customer.
1259 1258
 	 * @return string                   The client secret of the intent, used for confirmation in JS.
1260 1259
 	 */
1261
-	public function setup_intent( $order, $prepared_source ) {
1262
-		$order_id     = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
1263
-		$setup_intent = WC_Stripe_API::request( array(
1260
+	public function setup_intent($order, $prepared_source) {
1261
+		$order_id     = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
1262
+		$setup_intent = WC_Stripe_API::request(array(
1264 1263
 			'payment_method' => $prepared_source->source,
1265 1264
 			'customer'       => $prepared_source->customer,
1266 1265
 			'confirm'        => 'true',
1267
-		), 'setup_intents' );
1266
+		), 'setup_intents');
1268 1267
 
1269
-		if ( is_wp_error( $setup_intent ) ) {
1270
-			WC_Stripe_Logger::log( "Unable to create SetupIntent for Order #$order_id: " . print_r( $setup_intent, true ) );
1271
-		} elseif ( 'requires_action' === $setup_intent->status ) {
1272
-			if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) {
1273
-				update_post_meta( $order_id, '_stripe_setup_intent', $setup_intent->id );
1268
+		if (is_wp_error($setup_intent)) {
1269
+			WC_Stripe_Logger::log("Unable to create SetupIntent for Order #$order_id: " . print_r($setup_intent, true));
1270
+		} elseif ('requires_action' === $setup_intent->status) {
1271
+			if (WC_Stripe_Helper::is_wc_lt('3.0')) {
1272
+				update_post_meta($order_id, '_stripe_setup_intent', $setup_intent->id);
1274 1273
 			} else {
1275
-				$order->update_meta_data( '_stripe_setup_intent', $setup_intent->id );
1274
+				$order->update_meta_data('_stripe_setup_intent', $setup_intent->id);
1276 1275
 				$order->save();
1277 1276
 			}
1278 1277
 
@@ -1288,12 +1287,12 @@  discard block
 block discarded – undo
1288 1287
 	 * @param float    $amount          The amount to charge. If not specified, it will be read from the order.
1289 1288
 	 * @return object                   An intent or an error.
1290 1289
 	 */
1291
-	public function create_and_confirm_intent_for_off_session( $order, $prepared_source, $amount = NULL ) {
1290
+	public function create_and_confirm_intent_for_off_session($order, $prepared_source, $amount = NULL) {
1292 1291
 		// The request for a charge contains metadata for the intent.
1293
-		$full_request = $this->generate_payment_request( $order, $prepared_source );
1292
+		$full_request = $this->generate_payment_request($order, $prepared_source);
1294 1293
 
1295 1294
 		$request = array(
1296
-			'amount'               => $amount ? WC_Stripe_Helper::get_stripe_amount( $amount, $full_request['currency'] ) : $full_request['amount'],
1295
+			'amount'               => $amount ? WC_Stripe_Helper::get_stripe_amount($amount, $full_request['currency']) : $full_request['amount'],
1297 1296
 			'currency'             => $full_request['currency'],
1298 1297
 			'description'          => $full_request['description'],
1299 1298
 			'metadata'             => $full_request['metadata'],
@@ -1305,38 +1304,38 @@  discard block
 block discarded – undo
1305 1304
 			'confirmation_method'  => 'automatic',
1306 1305
 		);
1307 1306
 
1308
-		if ( isset( $full_request['statement_descriptor'] ) ) {
1307
+		if (isset($full_request['statement_descriptor'])) {
1309 1308
 			$request['statement_descriptor'] = $full_request['statement_descriptor'];
1310 1309
 		}
1311 1310
 
1312
-		if ( isset( $full_request['customer'] ) ) {
1311
+		if (isset($full_request['customer'])) {
1313 1312
 			$request['customer'] = $full_request['customer'];
1314 1313
 		}
1315 1314
 
1316
-		if ( isset( $full_request['source'] ) ) {
1315
+		if (isset($full_request['source'])) {
1317 1316
 			$request['source'] = $full_request['source'];
1318 1317
 		}
1319 1318
 
1320
-		$intent = WC_Stripe_API::request( $request, 'payment_intents' );
1321
-		$is_authentication_required = $this->is_authentication_required_for_payment( $intent );
1319
+		$intent = WC_Stripe_API::request($request, 'payment_intents');
1320
+		$is_authentication_required = $this->is_authentication_required_for_payment($intent);
1322 1321
 
1323
-		if ( ! empty( $intent->error ) && ! $is_authentication_required ) {
1322
+		if ( ! empty($intent->error) && ! $is_authentication_required) {
1324 1323
 			return $intent;
1325 1324
 		}
1326 1325
 
1327
-		$intent_id      = ( ! empty( $intent->error )
1326
+		$intent_id = ( ! empty($intent->error)
1328 1327
 			? $intent->error->payment_intent->id
1329 1328
 			: $intent->id
1330 1329
 		);
1331
-		$payment_intent = ( ! empty( $intent->error )
1330
+		$payment_intent = ( ! empty($intent->error)
1332 1331
 			? $intent->error->payment_intent
1333 1332
 			: $intent
1334 1333
 		);
1335
-		$order_id       = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id();
1336
-		WC_Stripe_Logger::log( "Stripe PaymentIntent $intent_id initiated for order $order_id" );
1334
+		$order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id();
1335
+		WC_Stripe_Logger::log("Stripe PaymentIntent $intent_id initiated for order $order_id");
1337 1336
 
1338 1337
 		// Save the intent ID to the order.
1339
-		$this->save_intent_to_order( $order, $payment_intent );
1338
+		$this->save_intent_to_order($order, $payment_intent);
1340 1339
 
1341 1340
 		return $intent;
1342 1341
 	}
Please login to merge, or discard this patch.