Completed
Push — master ( e3a5fe...3adadd )
by Roy
05:10
created
includes/abstracts/abstract-wc-stripe-payment-gateway.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 	 * Displays the admin settings webhook description.
16 16
 	 *
17 17
 	 * @since 4.1.0
18
-	 * @return mixed
18
+	 * @return string
19 19
 	 */
20 20
 	public function display_admin_settings_webhook_description() {
21 21
 		/* translators: 1) webhook url */
@@ -579,7 +579,7 @@  discard block
 block discarded – undo
579 579
 	 * Checks if card is 3DS.
580 580
 	 *
581 581
 	 * @since 4.0.4
582
-	 * @param object $source_object
582
+	 * @param stdClass $source_object
583 583
 	 * @return bool
584 584
 	 */
585 585
 	public function is_3ds_card( $source_object ) {
@@ -602,7 +602,7 @@  discard block
 block discarded – undo
602 602
 	 *
603 603
 	 * @since 4.0.8
604 604
 	 * @param string $source_id
605
-	 * @return bool
605
+	 * @return integer
606 606
 	 */
607 607
 	public function is_type_legacy_card( $source_id ) {
608 608
 		return ( preg_match( '/^card_/', $source_id ) );
Please login to merge, or discard this patch.
Spacing   +250 added lines, -251 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
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 	 */
20 20
 	public function display_admin_settings_webhook_description() {
21 21
 		/* translators: 1) webhook url */
22
-		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() );
22
+		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());
23 23
 	}
24 24
 
25 25
 	/**
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
 				<input id="wc-%1$s-new-payment-method" name="wc-%1$s-new-payment-method" type="checkbox" value="true" style="width:auto;" />
34 34
 				<label for="wc-%1$s-new-payment-method" style="display:inline;">%2$s</label>
35 35
 			</p>',
36
-			esc_attr( $this->id ),
37
-			esc_html( apply_filters( 'wc_stripe_save_to_account_text', __( 'Save payment information to my account for future purchases.', 'woocommerce-gateway-stripe' ) ) )
36
+			esc_attr($this->id),
37
+			esc_html(apply_filters('wc_stripe_save_to_account_text', __('Save payment information to my account for future purchases.', 'woocommerce-gateway-stripe')))
38 38
 		);
39 39
 	}
40 40
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	 * @since 4.0.5
46 46
 	 * @param array $error
47 47
 	 */
48
-	public function is_retryable_error( $error ) {
48
+	public function is_retryable_error($error) {
49 49
 		return (
50 50
 			'invalid_request_error' === $error->type ||
51 51
 			'idempotency_error' === $error->type ||
@@ -62,11 +62,11 @@  discard block
 block discarded – undo
62 62
 	 * @since 4.1.0
63 63
 	 * @param array $error
64 64
 	 */
65
-	public function is_same_idempotency_error( $error ) {
65
+	public function is_same_idempotency_error($error) {
66 66
 		return (
67 67
 			$error &&
68 68
 			'idempotency_error' === $error->type &&
69
-			preg_match( '/Keys for idempotent requests can only be used with the same parameters they were first used with./i', $error->message )
69
+			preg_match('/Keys for idempotent requests can only be used with the same parameters they were first used with./i', $error->message)
70 70
 		);
71 71
 	}
72 72
 
@@ -77,11 +77,11 @@  discard block
 block discarded – undo
77 77
 	 * @since 4.1.0
78 78
 	 * @param array $error
79 79
 	 */
80
-	public function is_source_already_consumed_error( $error ) {
80
+	public function is_source_already_consumed_error($error) {
81 81
 		return (
82 82
 			$error &&
83 83
 			'invalid_request_error' === $error->type &&
84
-			preg_match( '/The reusable source you provided is consumed because it was previously charged without being attached to a customer or was detached from a customer. To charge a reusable source multiple time you must attach it to a customer first./i', $error->message )
84
+			preg_match('/The reusable source you provided is consumed because it was previously charged without being attached to a customer or was detached from a customer. To charge a reusable source multiple time you must attach it to a customer first./i', $error->message)
85 85
 		);
86 86
 	}
87 87
 
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
 	 * @since 4.1.0
93 93
 	 * @param array $error
94 94
 	 */
95
-	public function is_no_such_customer_error( $error ) {
95
+	public function is_no_such_customer_error($error) {
96 96
 		return (
97 97
 			$error &&
98 98
 			'invalid_request_error' === $error->type &&
99
-			preg_match( '/No such customer/i', $error->message )
99
+			preg_match('/No such customer/i', $error->message)
100 100
 		);
101 101
 	}
102 102
 
@@ -107,11 +107,11 @@  discard block
 block discarded – undo
107 107
 	 * @since 4.1.0
108 108
 	 * @param array $error
109 109
 	 */
110
-	public function is_no_such_token_error( $error ) {
110
+	public function is_no_such_token_error($error) {
111 111
 		return (
112 112
 			$error &&
113 113
 			'invalid_request_error' === $error->type &&
114
-			preg_match( '/No such token/i', $error->message )
114
+			preg_match('/No such token/i', $error->message)
115 115
 		);
116 116
 	}
117 117
 
@@ -122,11 +122,11 @@  discard block
 block discarded – undo
122 122
 	 * @since 4.1.0
123 123
 	 * @param array $error
124 124
 	 */
125
-	public function is_no_such_source_error( $error ) {
125
+	public function is_no_such_source_error($error) {
126 126
 		return (
127 127
 			$error &&
128 128
 			'invalid_request_error' === $error->type &&
129
-			preg_match( '/No such source/i', $error->message )
129
+			preg_match('/No such source/i', $error->message)
130 130
 		);
131 131
 	}
132 132
 
@@ -137,11 +137,11 @@  discard block
 block discarded – undo
137 137
 	 * @since 4.1.0
138 138
 	 * @param array $error
139 139
 	 */
140
-	public function is_no_linked_source_error( $error ) {
140
+	public function is_no_linked_source_error($error) {
141 141
 		return (
142 142
 			$error &&
143 143
 			'invalid_request_error' === $error->type &&
144
-			preg_match( '/does not have a linked source with ID/i', $error->message )
144
+			preg_match('/does not have a linked source with ID/i', $error->message)
145 145
 		);
146 146
 	}
147 147
 
@@ -154,13 +154,13 @@  discard block
 block discarded – undo
154 154
 	 * @param object $error
155 155
 	 * @return bool
156 156
 	 */
157
-	public function need_update_idempotency_key( $source_object, $error ) {
157
+	public function need_update_idempotency_key($source_object, $error) {
158 158
 		return (
159 159
 			$error &&
160 160
 			1 < $this->retry_interval &&
161
-			! empty( $source_object ) &&
161
+			! empty($source_object) &&
162 162
 			'chargeable' === $source_object->status &&
163
-			self::is_same_idempotency_error( $error )
163
+			self::is_same_idempotency_error($error)
164 164
 		);
165 165
 	}
166 166
 
@@ -168,8 +168,8 @@  discard block
 block discarded – undo
168 168
 	 * Check if this gateway is enabled
169 169
 	 */
170 170
 	public function is_available() {
171
-		if ( 'yes' === $this->enabled ) {
172
-			if ( ! $this->secret_key || ! $this->publishable_key ) {
171
+		if ('yes' === $this->enabled) {
172
+			if ( ! $this->secret_key || ! $this->publishable_key) {
173 173
 				return false;
174 174
 			}
175 175
 			return true;
@@ -186,12 +186,12 @@  discard block
 block discarded – undo
186 186
 	 * @param int $order_id
187 187
 	 * @return bool
188 188
 	 */
189
-	public function maybe_process_pre_orders( $order_id ) {
189
+	public function maybe_process_pre_orders($order_id) {
190 190
 		return (
191 191
 			WC_Stripe_Helper::is_pre_orders_exists() &&
192
-			$this->pre_orders->is_pre_order( $order_id ) &&
193
-			WC_Pre_Orders_Order::order_requires_payment_tokenization( $order_id ) &&
194
-			! is_wc_endpoint_url( 'order-pay' )
192
+			$this->pre_orders->is_pre_order($order_id) &&
193
+			WC_Pre_Orders_Order::order_requires_payment_tokenization($order_id) &&
194
+			! is_wc_endpoint_url('order-pay')
195 195
 		);
196 196
 	}
197 197
 
@@ -201,8 +201,8 @@  discard block
 block discarded – undo
201 201
 	 * @since 1.0.0
202 202
 	 * @version 4.0.0
203 203
 	 */
204
-	public function add_admin_notice( $slug, $class, $message, $dismissible = false ) {
205
-		$this->notices[ $slug ] = array(
204
+	public function add_admin_notice($slug, $class, $message, $dismissible = false) {
205
+		$this->notices[$slug] = array(
206 206
 			'class'       => $class,
207 207
 			'message'     => $message,
208 208
 			'dismissible' => $dismissible,
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 	 * @return array
219 219
 	 */
220 220
 	public function payment_icons() {
221
-		return apply_filters( 'wc_stripe_payment_icons', array(
221
+		return apply_filters('wc_stripe_payment_icons', array(
222 222
 			'visa'       => '<img src="' . WC()->plugin_url() . '/assets/images/icons/credit-cards/visa.svg" class="stripe-visa-icon stripe-icon" alt="Visa" />',
223 223
 			'amex'       => '<img src="' . WC()->plugin_url() . '/assets/images/icons/credit-cards/amex.svg" class="stripe-amex-icon stripe-icon" alt="American Express" />',
224 224
 			'mastercard' => '<img src="' . WC()->plugin_url() . '/assets/images/icons/credit-cards/mastercard.svg" class="stripe-mastercard-icon stripe-icon" alt="Mastercard" />',
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
 			'multibanco' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/multibanco.svg" class="stripe-multibanco-icon stripe-icon" alt="Multibanco" />',
237 237
 			'sofort'     => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/sofort.svg" class="stripe-sofort-icon stripe-icon" alt="SOFORT" />',
238 238
 			'sepa'       => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/sepa.svg" class="stripe-sepa-icon stripe-icon" alt="SEPA" />',
239
-		) );
239
+		));
240 240
 	}
241 241
 
242 242
 	/**
@@ -247,10 +247,10 @@  discard block
 block discarded – undo
247 247
 	 * @version 4.0.0
248 248
 	 * @param object $order
249 249
 	 */
250
-	public function validate_minimum_order_amount( $order ) {
251
-		if ( $order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
250
+	public function validate_minimum_order_amount($order) {
251
+		if ($order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount()) {
252 252
 			/* translators: 1) dollar amount */
253
-			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 ) ) );
253
+			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)));
254 254
 		}
255 255
 	}
256 256
 
@@ -260,14 +260,14 @@  discard block
 block discarded – undo
260 260
 	 * @since 4.0.0
261 261
 	 * @version 4.0.0
262 262
 	 */
263
-	public function get_transaction_url( $order ) {
264
-		if ( $this->testmode ) {
263
+	public function get_transaction_url($order) {
264
+		if ($this->testmode) {
265 265
 			$this->view_transaction_url = 'https://dashboard.stripe.com/test/payments/%s';
266 266
 		} else {
267 267
 			$this->view_transaction_url = 'https://dashboard.stripe.com/payments/%s';
268 268
 		}
269 269
 
270
-		return parent::get_transaction_url( $order );
270
+		return parent::get_transaction_url($order);
271 271
 	}
272 272
 
273 273
 	/**
@@ -276,15 +276,15 @@  discard block
 block discarded – undo
276 276
 	 * @since 4.0.0
277 277
 	 * @version 4.0.0
278 278
 	 */
279
-	public function get_stripe_customer_id( $order ) {
280
-		$customer = get_user_meta( WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true );
279
+	public function get_stripe_customer_id($order) {
280
+		$customer = get_user_meta(WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true);
281 281
 
282
-		if ( empty( $customer ) ) {
282
+		if (empty($customer)) {
283 283
 			// Try to get it via the order.
284
-			if ( WC_Stripe_Helper::is_pre_30() ) {
285
-				return get_post_meta( $order->id, '_stripe_customer_id', true );
284
+			if (WC_Stripe_Helper::is_pre_30()) {
285
+				return get_post_meta($order->id, '_stripe_customer_id', true);
286 286
 			} else {
287
-				return $order->get_meta( '_stripe_customer_id', true );
287
+				return $order->get_meta('_stripe_customer_id', true);
288 288
 			}
289 289
 		} else {
290 290
 			return $customer;
@@ -301,9 +301,9 @@  discard block
 block discarded – undo
301 301
 	 * @param object $order
302 302
 	 * @param int $id Stripe session id.
303 303
 	 */
304
-	public function get_stripe_return_url( $order = null, $id = null ) {
305
-		if ( is_object( $order ) ) {
306
-			if ( empty( $id ) ) {
304
+	public function get_stripe_return_url($order = null, $id = null) {
305
+		if (is_object($order)) {
306
+			if (empty($id)) {
307 307
 				$id = uniqid();
308 308
 			}
309 309
 
@@ -314,10 +314,10 @@  discard block
 block discarded – undo
314 314
 				'order_id'       => $order_id,
315 315
 			);
316 316
 
317
-			return esc_url_raw( add_query_arg( $args, $this->get_return_url( $order ) ) );
317
+			return esc_url_raw(add_query_arg($args, $this->get_return_url($order)));
318 318
 		}
319 319
 
320
-		return esc_url_raw( add_query_arg( array( 'utm_nooverride' => '1' ), $this->get_return_url() ) );
320
+		return esc_url_raw(add_query_arg(array('utm_nooverride' => '1'), $this->get_return_url()));
321 321
 	}
322 322
 
323 323
 	/**
@@ -325,8 +325,8 @@  discard block
 block discarded – undo
325 325
 	 * @param  int  $order_id
326 326
 	 * @return boolean
327 327
 	 */
328
-	public function has_subscription( $order_id ) {
329
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
328
+	public function has_subscription($order_id) {
329
+		return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id)));
330 330
 	}
331 331
 
332 332
 	/**
@@ -338,34 +338,33 @@  discard block
 block discarded – undo
338 338
 	 * @param  object $prepared_source
339 339
 	 * @return array()
340 340
 	 */
341
-	public function generate_payment_request( $order, $prepared_source ) {
342
-		$settings                          = get_option( 'woocommerce_stripe_settings', array() );
343
-		$statement_descriptor              = ! empty( $settings['statement_descriptor'] ) ? str_replace( "'", '', $settings['statement_descriptor'] ) : '';
344
-		$capture                           = ! empty( $settings['capture'] ) && 'yes' === $settings['capture'] ? true : false;
341
+	public function generate_payment_request($order, $prepared_source) {
342
+		$settings                          = get_option('woocommerce_stripe_settings', array());
343
+		$statement_descriptor              = ! empty($settings['statement_descriptor']) ? str_replace("'", '', $settings['statement_descriptor']) : '';
344
+		$capture                           = ! empty($settings['capture']) && 'yes' === $settings['capture'] ? true : false;
345 345
 		$post_data                         = array();
346
-		$post_data['currency']             = strtolower( WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency() );
347
-		$post_data['amount']               = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $post_data['currency'] );
346
+		$post_data['currency']             = strtolower(WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency());
347
+		$post_data['amount']               = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $post_data['currency']);
348 348
 		/* translators: 1) blog name 2) order number */
349
-		$post_data['description']          = sprintf( __( '%1$s - Order %2$s', 'woocommerce-gateway-stripe' ), wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ), $order->get_order_number() );
349
+		$post_data['description']          = sprintf(__('%1$s - Order %2$s', 'woocommerce-gateway-stripe'), wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES), $order->get_order_number());
350 350
 		$billing_email      = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
351 351
 		$billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
352 352
 		$billing_last_name  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
353 353
 
354
-		if ( ! empty( $billing_email ) && apply_filters( 'wc_stripe_send_stripe_receipt', false ) ) {
354
+		if ( ! empty($billing_email) && apply_filters('wc_stripe_send_stripe_receipt', false)) {
355 355
 			$post_data['receipt_email'] = $billing_email;
356 356
 		}
357 357
 
358
-		switch ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) {
359
-			case 'stripe':
360
-				if ( ! empty( $statement_descriptor ) ) {
361
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
358
+		switch (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method()) {
359
+			case 'stripe' : if ( ! empty($statement_descriptor)) {
360
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
362 361
 				}
363 362
 
364 363
 				$post_data['capture'] = $capture ? 'true' : 'false';
365 364
 				break;
366 365
 			case 'stripe_sepa':
367
-				if ( ! empty( $statement_descriptor ) ) {
368
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
366
+				if ( ! empty($statement_descriptor)) {
367
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
369 368
 				}
370 369
 				break;
371 370
 		}
@@ -373,25 +372,25 @@  discard block
 block discarded – undo
373 372
 		$post_data['expand[]'] = 'balance_transaction';
374 373
 
375 374
 		$metadata = array(
376
-			__( 'customer_name', 'woocommerce-gateway-stripe' ) => sanitize_text_field( $billing_first_name ) . ' ' . sanitize_text_field( $billing_last_name ),
377
-			__( 'customer_email', 'woocommerce-gateway-stripe' ) => sanitize_email( $billing_email ),
375
+			__('customer_name', 'woocommerce-gateway-stripe') => sanitize_text_field($billing_first_name) . ' ' . sanitize_text_field($billing_last_name),
376
+			__('customer_email', 'woocommerce-gateway-stripe') => sanitize_email($billing_email),
378 377
 			'order_id' => $order->get_order_number(),
379 378
 		);
380 379
 
381
-		if ( $this->has_subscription( WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id() ) ) {
380
+		if ($this->has_subscription(WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id())) {
382 381
 			$metadata += array(
383 382
 				'payment_type' => 'recurring',
384
-				'site_url'     => esc_url( get_site_url() ),
383
+				'site_url'     => esc_url(get_site_url()),
385 384
 			);
386 385
 		}
387 386
 
388
-		$post_data['metadata'] = apply_filters( 'wc_stripe_payment_metadata', $metadata, $order, $prepared_source );
387
+		$post_data['metadata'] = apply_filters('wc_stripe_payment_metadata', $metadata, $order, $prepared_source);
389 388
 
390
-		if ( $prepared_source->customer ) {
389
+		if ($prepared_source->customer) {
391 390
 			$post_data['customer'] = $prepared_source->customer;
392 391
 		}
393 392
 
394
-		if ( $prepared_source->source ) {
393
+		if ($prepared_source->source) {
395 394
 			$post_data['source'] = $prepared_source->source;
396 395
 		}
397 396
 
@@ -403,83 +402,83 @@  discard block
 block discarded – undo
403 402
 		 * @param WC_Order $order
404 403
 		 * @param object $source
405 404
 		 */
406
-		return apply_filters( 'wc_stripe_generate_payment_request', $post_data, $order, $prepared_source );
405
+		return apply_filters('wc_stripe_generate_payment_request', $post_data, $order, $prepared_source);
407 406
 	}
408 407
 
409 408
 	/**
410 409
 	 * Store extra meta data for an order from a Stripe Response.
411 410
 	 */
412
-	public function process_response( $response, $order ) {
413
-		WC_Stripe_Logger::log( 'Processing response: ' . print_r( $response, true ) );
411
+	public function process_response($response, $order) {
412
+		WC_Stripe_Logger::log('Processing response: ' . print_r($response, true));
414 413
 
415 414
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
416 415
 
417
-		$captured = ( isset( $response->captured ) && $response->captured ) ? 'yes' : 'no';
416
+		$captured = (isset($response->captured) && $response->captured) ? 'yes' : 'no';
418 417
 
419 418
 		// Store charge data.
420
-		WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', $captured ) : $order->update_meta_data( '_stripe_charge_captured', $captured );
419
+		WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', $captured) : $order->update_meta_data('_stripe_charge_captured', $captured);
421 420
 
422 421
 		// Store other data such as fees.
423
-		if ( isset( $response->balance_transaction ) && isset( $response->balance_transaction->fee ) ) {
422
+		if (isset($response->balance_transaction) && isset($response->balance_transaction->fee)) {
424 423
 			// Fees and Net needs to both come from Stripe to be accurate as the returned
425 424
 			// values are in the local currency of the Stripe account, not from WC.
426
-			$fee = ! empty( $response->balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'fee' ) : 0;
427
-			$net = ! empty( $response->balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'net' ) : 0;
428
-			WC_Stripe_Helper::update_stripe_fee( $order, $fee );
429
-			WC_Stripe_Helper::update_stripe_net( $order, $net );
425
+			$fee = ! empty($response->balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'fee') : 0;
426
+			$net = ! empty($response->balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'net') : 0;
427
+			WC_Stripe_Helper::update_stripe_fee($order, $fee);
428
+			WC_Stripe_Helper::update_stripe_net($order, $net);
430 429
 
431 430
 			// Store currency stripe.
432
-			$currency = ! empty( $response->balance_transaction->currency ) ? strtoupper( $response->balance_transaction->currency ) : null;
433
-			WC_Stripe_Helper::update_stripe_currency( $order, $currency );
431
+			$currency = ! empty($response->balance_transaction->currency) ? strtoupper($response->balance_transaction->currency) : null;
432
+			WC_Stripe_Helper::update_stripe_currency($order, $currency);
434 433
 		}
435 434
 
436
-		if ( 'yes' === $captured ) {
435
+		if ('yes' === $captured) {
437 436
 			/**
438 437
 			 * Charge can be captured but in a pending state. Payment methods
439 438
 			 * that are asynchronous may take couple days to clear. Webhook will
440 439
 			 * take care of the status changes.
441 440
 			 */
442
-			if ( 'pending' === $response->status ) {
443
-				$order_stock_reduced = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_order_stock_reduced', true ) : $order->get_meta( '_order_stock_reduced', true );
441
+			if ('pending' === $response->status) {
442
+				$order_stock_reduced = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_order_stock_reduced', true) : $order->get_meta('_order_stock_reduced', true);
444 443
 
445
-				if ( ! $order_stock_reduced ) {
446
-					WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
444
+				if ( ! $order_stock_reduced) {
445
+					WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
447 446
 				}
448 447
 
449
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
448
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
450 449
 				/* translators: transaction id */
451
-				$order->update_status( 'on-hold', sprintf( __( 'Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe' ), $response->id ) );
450
+				$order->update_status('on-hold', sprintf(__('Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe'), $response->id));
452 451
 			}
453 452
 
454
-			if ( 'succeeded' === $response->status ) {
455
-				$order->payment_complete( $response->id );
453
+			if ('succeeded' === $response->status) {
454
+				$order->payment_complete($response->id);
456 455
 
457 456
 				/* translators: transaction id */
458
-				$message = sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $response->id );
459
-				$order->add_order_note( $message );
457
+				$message = sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $response->id);
458
+				$order->add_order_note($message);
460 459
 			}
461 460
 
462
-			if ( 'failed' === $response->status ) {
463
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
464
-				$order->add_order_note( $localized_message );
465
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
461
+			if ('failed' === $response->status) {
462
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
463
+				$order->add_order_note($localized_message);
464
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
466 465
 			}
467 466
 		} else {
468
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
467
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
469 468
 
470
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
471
-				WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
469
+			if ($order->has_status(array('pending', 'failed'))) {
470
+				WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
472 471
 			}
473 472
 
474 473
 			/* translators: transaction id */
475
-			$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 ) );
474
+			$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));
476 475
 		}
477 476
 
478
-		if ( is_callable( array( $order, 'save' ) ) ) {
477
+		if (is_callable(array($order, 'save'))) {
479 478
 			$order->save();
480 479
 		}
481 480
 
482
-		do_action( 'wc_gateway_stripe_process_response', $response, $order );
481
+		do_action('wc_gateway_stripe_process_response', $response, $order);
483 482
 
484 483
 		return $response;
485 484
 	}
@@ -492,10 +491,10 @@  discard block
 block discarded – undo
492 491
 	 * @param int $order_id
493 492
 	 * @return null
494 493
 	 */
495
-	public function send_failed_order_email( $order_id ) {
494
+	public function send_failed_order_email($order_id) {
496 495
 		$emails = WC()->mailer()->get_emails();
497
-		if ( ! empty( $emails ) && ! empty( $order_id ) ) {
498
-			$emails['WC_Email_Failed_Order']->trigger( $order_id );
496
+		if ( ! empty($emails) && ! empty($order_id)) {
497
+			$emails['WC_Email_Failed_Order']->trigger($order_id);
499 498
 		}
500 499
 	}
501 500
 
@@ -507,7 +506,7 @@  discard block
 block discarded – undo
507 506
 	 * @param object $order
508 507
 	 * @return object $details
509 508
 	 */
510
-	public function get_owner_details( $order ) {
509
+	public function get_owner_details($order) {
511 510
 		$billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
512 511
 		$billing_last_name  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
513 512
 
@@ -517,15 +516,15 @@  discard block
 block discarded – undo
517 516
 		$email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
518 517
 		$phone = WC_Stripe_Helper::is_pre_30() ? $order->billing_phone : $order->get_billing_phone();
519 518
 
520
-		if ( ! empty( $phone ) ) {
519
+		if ( ! empty($phone)) {
521 520
 			$details['phone'] = $phone;
522 521
 		}
523 522
 
524
-		if ( ! empty( $name ) ) {
523
+		if ( ! empty($name)) {
525 524
 			$details['name'] = $name;
526 525
 		}
527 526
 
528
-		if ( ! empty( $email ) ) {
527
+		if ( ! empty($email)) {
529 528
 			$details['email'] = $email;
530 529
 		}
531 530
 
@@ -536,7 +535,7 @@  discard block
 block discarded – undo
536 535
 		$details['address']['postal_code'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_postcode : $order->get_billing_postcode();
537 536
 		$details['address']['country']     = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country();
538 537
 
539
-		return (object) apply_filters( 'wc_stripe_owner_details', $details, $order );
538
+		return (object) apply_filters('wc_stripe_owner_details', $details, $order);
540 539
 	}
541 540
 
542 541
 	/**
@@ -545,15 +544,15 @@  discard block
 block discarded – undo
545 544
 	 * @since 4.0.3
546 545
 	 * @param string $source_id The source ID to get source object for.
547 546
 	 */
548
-	public function get_source_object( $source_id = '' ) {
549
-		if ( empty( $source_id ) ) {
547
+	public function get_source_object($source_id = '') {
548
+		if (empty($source_id)) {
550 549
 			return '';
551 550
 		}
552 551
 
553
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id );
552
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source_id);
554 553
 
555
-		if ( ! empty( $source_object->error ) ) {
556
-			throw new WC_Stripe_Exception( print_r( $source_object, true ), $source_object->error->message );
554
+		if ( ! empty($source_object->error)) {
555
+			throw new WC_Stripe_Exception(print_r($source_object, true), $source_object->error->message);
557 556
 		}
558 557
 
559 558
 		return $source_object;
@@ -567,12 +566,12 @@  discard block
 block discarded – undo
567 566
 	 * @param object $source_object
568 567
 	 * @return bool
569 568
 	 */
570
-	public function is_3ds_required( $source_object ) {
571
-		return apply_filters( 'wc_stripe_require_3ds', (
572
-			$source_object && ! empty( $source_object->card ) ) &&
573
-			( 'card' === $source_object->type && 'required' === $source_object->card->three_d_secure ||
574
-			( $this->three_d_secure && 'recommended' === $source_object->card->three_d_secure )
575
-		), $source_object, $this->three_d_secure );
569
+	public function is_3ds_required($source_object) {
570
+		return apply_filters('wc_stripe_require_3ds', (
571
+			$source_object && ! empty($source_object->card) ) &&
572
+			('card' === $source_object->type && 'required' === $source_object->card->three_d_secure ||
573
+			($this->three_d_secure && 'recommended' === $source_object->card->three_d_secure)
574
+		), $source_object, $this->three_d_secure);
576 575
 	}
577 576
 
578 577
 	/**
@@ -582,8 +581,8 @@  discard block
 block discarded – undo
582 581
 	 * @param object $source_object
583 582
 	 * @return bool
584 583
 	 */
585
-	public function is_3ds_card( $source_object ) {
586
-		return ( $source_object && 'three_d_secure' === $source_object->type );
584
+	public function is_3ds_card($source_object) {
585
+		return ($source_object && 'three_d_secure' === $source_object->type);
587 586
 	}
588 587
 
589 588
 	/**
@@ -593,8 +592,8 @@  discard block
 block discarded – undo
593 592
 	 * @param object $source_object
594 593
 	 * @return bool
595 594
 	 */
596
-	public function is_prepaid_card( $source_object ) {
597
-		return ( $source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding );
595
+	public function is_prepaid_card($source_object) {
596
+		return ($source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding);
598 597
 	}
599 598
 
600 599
 	/**
@@ -604,8 +603,8 @@  discard block
 block discarded – undo
604 603
 	 * @param string $source_id
605 604
 	 * @return bool
606 605
 	 */
607
-	public function is_type_legacy_card( $source_id ) {
608
-		return ( preg_match( '/^card_/', $source_id ) );
606
+	public function is_type_legacy_card($source_id) {
607
+		return (preg_match('/^card_/', $source_id));
609 608
 	}
610 609
 
611 610
 	/**
@@ -615,9 +614,9 @@  discard block
 block discarded – undo
615 614
 	 * @return bool
616 615
 	 */
617 616
 	public function is_using_saved_payment_method() {
618
-		$payment_method = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe';
617
+		$payment_method = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe';
619 618
 
620
-		return ( isset( $_POST[ 'wc-' . $payment_method . '-payment-token' ] ) && 'new' !== $_POST[ 'wc-' . $payment_method . '-payment-token' ] );
619
+		return (isset($_POST['wc-' . $payment_method . '-payment-token']) && 'new' !== $_POST['wc-' . $payment_method . '-payment-token']);
621 620
 	}
622 621
 
623 622
 	/**
@@ -630,22 +629,22 @@  discard block
 block discarded – undo
630 629
 	 * @param string $return_url
631 630
 	 * @return mixed
632 631
 	 */
633
-	public function create_3ds_source( $order, $source_object, $return_url = '' ) {
632
+	public function create_3ds_source($order, $source_object, $return_url = '') {
634 633
 		$currency                    = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency();
635 634
 		$order_id                    = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
636
-		$return_url                  = empty( $return_url ) ? $this->get_stripe_return_url( $order ) : $return_url;
635
+		$return_url                  = empty($return_url) ? $this->get_stripe_return_url($order) : $return_url;
637 636
 
638 637
 		$post_data                   = array();
639
-		$post_data['amount']         = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency );
640
-		$post_data['currency']       = strtolower( $currency );
638
+		$post_data['amount']         = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency);
639
+		$post_data['currency']       = strtolower($currency);
641 640
 		$post_data['type']           = 'three_d_secure';
642
-		$post_data['owner']          = $this->get_owner_details( $order );
643
-		$post_data['three_d_secure'] = array( 'card' => $source_object->id );
644
-		$post_data['redirect']       = array( 'return_url' => $return_url );
641
+		$post_data['owner']          = $this->get_owner_details($order);
642
+		$post_data['three_d_secure'] = array('card' => $source_object->id);
643
+		$post_data['redirect']       = array('return_url' => $return_url);
645 644
 
646
-		WC_Stripe_Logger::log( 'Info: Begin creating 3DS source...' );
645
+		WC_Stripe_Logger::log('Info: Begin creating 3DS source...');
647 646
 
648
-		return WC_Stripe_API::request( apply_filters( 'wc_stripe_3ds_source', $post_data, $order ), 'sources' );
647
+		return WC_Stripe_API::request(apply_filters('wc_stripe_3ds_source', $post_data, $order), 'sources');
649 648
 	}
650 649
 
651 650
 	/**
@@ -661,61 +660,61 @@  discard block
 block discarded – undo
661 660
 	 * @throws Exception When card was not added or for and invalid card.
662 661
 	 * @return object
663 662
 	 */
664
-	public function prepare_source( $user_id, $force_save_source = false ) {
665
-		$customer           = new WC_Stripe_Customer( $user_id );
663
+	public function prepare_source($user_id, $force_save_source = false) {
664
+		$customer           = new WC_Stripe_Customer($user_id);
666 665
 		$set_customer       = true;
667
-		$force_save_source  = apply_filters( 'wc_stripe_force_save_source', $force_save_source, $customer );
666
+		$force_save_source  = apply_filters('wc_stripe_force_save_source', $force_save_source, $customer);
668 667
 		$source_object      = '';
669 668
 		$source_id          = '';
670 669
 		$wc_token_id        = false;
671
-		$payment_method     = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe';
670
+		$payment_method     = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe';
672 671
 		$is_token           = false;
673 672
 
674 673
 		// New CC info was entered and we have a new source to process.
675
-		if ( ! empty( $_POST['stripe_source'] ) ) {
676
-			$source_object = self::get_source_object( wc_clean( $_POST['stripe_source'] ) );
674
+		if ( ! empty($_POST['stripe_source'])) {
675
+			$source_object = self::get_source_object(wc_clean($_POST['stripe_source']));
677 676
 			$source_id     = $source_object->id;
678 677
 
679 678
 			// This checks to see if customer opted to save the payment method to file.
680
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
679
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
681 680
 
682 681
 			/**
683 682
 			 * This is true if the user wants to store the card to their account.
684 683
 			 * Criteria to save to file is they are logged in, they opted to save or product requirements and the source is
685 684
 			 * actually reusable. Either that or force_save_source is true.
686 685
 			 */
687
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage ) || $force_save_source ) {
688
-				$response = $customer->add_source( $source_object->id );
686
+			if (($user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage) || $force_save_source) {
687
+				$response = $customer->add_source($source_object->id);
689 688
 
690
-				if ( ! empty( $response->error ) ) {
691
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
689
+				if ( ! empty($response->error)) {
690
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
692 691
 				}
693 692
 			}
694
-		} elseif ( $this->is_using_saved_payment_method() ) {
693
+		} elseif ($this->is_using_saved_payment_method()) {
695 694
 			// Use an existing token, and then process the payment.
696
-			$wc_token_id = wc_clean( $_POST[ 'wc-' . $payment_method . '-payment-token' ] );
697
-			$wc_token    = WC_Payment_Tokens::get( $wc_token_id );
695
+			$wc_token_id = wc_clean($_POST['wc-' . $payment_method . '-payment-token']);
696
+			$wc_token    = WC_Payment_Tokens::get($wc_token_id);
698 697
 
699
-			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id() ) {
700
-				WC()->session->set( 'refresh_totals', true );
701
-				throw new WC_Stripe_Exception( 'Invalid payment method', __( 'Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe' ) );
698
+			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id()) {
699
+				WC()->session->set('refresh_totals', true);
700
+				throw new WC_Stripe_Exception('Invalid payment method', __('Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe'));
702 701
 			}
703 702
 
704 703
 			$source_id = $wc_token->get_token();
705 704
 
706
-			if ( $this->is_type_legacy_card( $source_id ) ) {
705
+			if ($this->is_type_legacy_card($source_id)) {
707 706
 				$is_token = true;
708 707
 			}
709
-		} elseif ( isset( $_POST['stripe_token'] ) && 'new' !== $_POST['stripe_token'] ) {
710
-			$stripe_token     = wc_clean( $_POST['stripe_token'] );
711
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
708
+		} elseif (isset($_POST['stripe_token']) && 'new' !== $_POST['stripe_token']) {
709
+			$stripe_token     = wc_clean($_POST['stripe_token']);
710
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
712 711
 
713 712
 			// This is true if the user wants to store the card to their account.
714
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card ) || $force_save_source ) {
715
-				$response = $customer->add_source( $stripe_token );
713
+			if (($user_id && $this->saved_cards && $maybe_saved_card) || $force_save_source) {
714
+				$response = $customer->add_source($stripe_token);
716 715
 
717
-				if ( ! empty( $response->error ) ) {
718
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
716
+				if ( ! empty($response->error)) {
717
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
719 718
 				}
720 719
 			} else {
721 720
 				$set_customer = false;
@@ -724,14 +723,14 @@  discard block
 block discarded – undo
724 723
 			}
725 724
 		}
726 725
 
727
-		if ( ! $set_customer ) {
726
+		if ( ! $set_customer) {
728 727
 			$customer_id = false;
729 728
 		} else {
730 729
 			$customer_id = $customer->get_id() ? $customer->get_id() : false;
731 730
 		}
732 731
 
733
-		if ( empty( $source_object ) && ! $is_token ) {
734
-			$source_object = self::get_source_object( $source_id );
732
+		if (empty($source_object) && ! $is_token) {
733
+			$source_object = self::get_source_object($source_id);
735 734
 		}
736 735
 
737 736
 		return (object) array(
@@ -755,39 +754,39 @@  discard block
 block discarded – undo
755 754
 	 * @param object $order
756 755
 	 * @return object
757 756
 	 */
758
-	public function prepare_order_source( $order = null ) {
757
+	public function prepare_order_source($order = null) {
759 758
 		$stripe_customer = new WC_Stripe_Customer();
760 759
 		$stripe_source   = false;
761 760
 		$token_id        = false;
762 761
 		$source_object   = false;
763 762
 
764
-		if ( $order ) {
763
+		if ($order) {
765 764
 			$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
766 765
 
767
-			$stripe_customer_id = get_post_meta( $order_id, '_stripe_customer_id', true );
766
+			$stripe_customer_id = get_post_meta($order_id, '_stripe_customer_id', true);
768 767
 
769
-			if ( $stripe_customer_id ) {
770
-				$stripe_customer->set_id( $stripe_customer_id );
768
+			if ($stripe_customer_id) {
769
+				$stripe_customer->set_id($stripe_customer_id);
771 770
 			}
772 771
 
773
-			$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_source_id', true ) : $order->get_meta( '_stripe_source_id', true );
772
+			$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_source_id', true) : $order->get_meta('_stripe_source_id', true);
774 773
 
775 774
 			// Since 4.0.0, we changed card to source so we need to account for that.
776
-			if ( empty( $source_id ) ) {
777
-				$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_card_id', true ) : $order->get_meta( '_stripe_card_id', true );
775
+			if (empty($source_id)) {
776
+				$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_card_id', true) : $order->get_meta('_stripe_card_id', true);
778 777
 
779 778
 				// Take this opportunity to update the key name.
780
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_source_id', $source_id ) : $order->update_meta_data( '_stripe_source_id', $source_id );
779
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_source_id', $source_id) : $order->update_meta_data('_stripe_source_id', $source_id);
781 780
 
782
-				if ( is_callable( array( $order, 'save' ) ) ) {
781
+				if (is_callable(array($order, 'save'))) {
783 782
 					$order->save();
784 783
 				}
785 784
 			}
786 785
 
787
-			if ( $source_id ) {
786
+			if ($source_id) {
788 787
 				$stripe_source = $source_id;
789
-				$source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id );
790
-			} elseif ( apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
788
+				$source_object = WC_Stripe_API::retrieve('sources/' . $source_id);
789
+			} elseif (apply_filters('wc_stripe_use_default_customer_source', true)) {
791 790
 				/*
792 791
 				 * We can attempt to charge the customer's default source
793 792
 				 * by sending empty source id.
@@ -812,27 +811,27 @@  discard block
 block discarded – undo
812 811
 	 * @param WC_Order $order For to which the source applies.
813 812
 	 * @param stdClass $source Source information.
814 813
 	 */
815
-	public function save_source_to_order( $order, $source ) {
814
+	public function save_source_to_order($order, $source) {
816 815
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
817 816
 
818 817
 		// Store source in the order.
819
-		if ( $source->customer ) {
820
-			if ( WC_Stripe_Helper::is_pre_30() ) {
821
-				update_post_meta( $order_id, '_stripe_customer_id', $source->customer );
818
+		if ($source->customer) {
819
+			if (WC_Stripe_Helper::is_pre_30()) {
820
+				update_post_meta($order_id, '_stripe_customer_id', $source->customer);
822 821
 			} else {
823
-				$order->update_meta_data( '_stripe_customer_id', $source->customer );
822
+				$order->update_meta_data('_stripe_customer_id', $source->customer);
824 823
 			}
825 824
 		}
826 825
 
827
-		if ( $source->source ) {
828
-			if ( WC_Stripe_Helper::is_pre_30() ) {
829
-				update_post_meta( $order_id, '_stripe_source_id', $source->source );
826
+		if ($source->source) {
827
+			if (WC_Stripe_Helper::is_pre_30()) {
828
+				update_post_meta($order_id, '_stripe_source_id', $source->source);
830 829
 			} else {
831
-				$order->update_meta_data( '_stripe_source_id', $source->source );
830
+				$order->update_meta_data('_stripe_source_id', $source->source);
832 831
 			}
833 832
 		}
834 833
 
835
-		if ( is_callable( array( $order, 'save' ) ) ) {
834
+		if (is_callable(array($order, 'save'))) {
836 835
 			$order->save();
837 836
 		}
838 837
 	}
@@ -846,35 +845,35 @@  discard block
 block discarded – undo
846 845
 	 * @param object $order The order object
847 846
 	 * @param int $balance_transaction_id
848 847
 	 */
849
-	public function update_fees( $order, $balance_transaction_id ) {
848
+	public function update_fees($order, $balance_transaction_id) {
850 849
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
851 850
 
852
-		$balance_transaction = WC_Stripe_API::retrieve( 'balance/history/' . $balance_transaction_id );
851
+		$balance_transaction = WC_Stripe_API::retrieve('balance/history/' . $balance_transaction_id);
853 852
 
854
-		if ( empty( $balance_transaction->error ) ) {
855
-			if ( isset( $balance_transaction ) && isset( $balance_transaction->fee ) ) {
853
+		if (empty($balance_transaction->error)) {
854
+			if (isset($balance_transaction) && isset($balance_transaction->fee)) {
856 855
 				// Fees and Net needs to both come from Stripe to be accurate as the returned
857 856
 				// values are in the local currency of the Stripe account, not from WC.
858
-				$fee_refund = ! empty( $balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'fee' ) : 0;
859
-				$net_refund = ! empty( $balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'net' ) : 0;
857
+				$fee_refund = ! empty($balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'fee') : 0;
858
+				$net_refund = ! empty($balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'net') : 0;
860 859
 
861 860
 				// Current data fee & net.
862
-				$fee_current = WC_Stripe_Helper::get_stripe_fee( $order );
863
-				$net_current = WC_Stripe_Helper::get_stripe_net( $order );
861
+				$fee_current = WC_Stripe_Helper::get_stripe_fee($order);
862
+				$net_current = WC_Stripe_Helper::get_stripe_net($order);
864 863
 
865 864
 				// Calculation.
866 865
 				$fee = (float) $fee_current + (float) $fee_refund;
867 866
 				$net = (float) $net_current + (float) $net_refund;
868 867
 
869
-				WC_Stripe_Helper::update_stripe_fee( $order, $fee );
870
-				WC_Stripe_Helper::update_stripe_net( $order, $net );
868
+				WC_Stripe_Helper::update_stripe_fee($order, $fee);
869
+				WC_Stripe_Helper::update_stripe_net($order, $net);
871 870
 
872
-				if ( is_callable( array( $order, 'save' ) ) ) {
871
+				if (is_callable(array($order, 'save'))) {
873 872
 					$order->save();
874 873
 				}
875 874
 			}
876 875
 		} else {
877
-			WC_Stripe_Logger::log( "Unable to update fees/net meta for order: {$order_id}" );
876
+			WC_Stripe_Logger::log("Unable to update fees/net meta for order: {$order_id}");
878 877
 		}
879 878
 	}
880 879
 
@@ -887,33 +886,33 @@  discard block
 block discarded – undo
887 886
 	 * @param  float $amount
888 887
 	 * @return bool
889 888
 	 */
890
-	public function process_refund( $order_id, $amount = null, $reason = '' ) {
891
-		$order = wc_get_order( $order_id );
889
+	public function process_refund($order_id, $amount = null, $reason = '') {
890
+		$order = wc_get_order($order_id);
892 891
 
893
-		if ( ! $order || ! $order->get_transaction_id() ) {
892
+		if ( ! $order || ! $order->get_transaction_id()) {
894 893
 			return false;
895 894
 		}
896 895
 
897 896
 		$request = array();
898 897
 
899
-		if ( WC_Stripe_Helper::is_pre_30() ) {
900
-			$order_currency = get_post_meta( $order_id, '_order_currency', true );
901
-			$captured       = get_post_meta( $order_id, '_stripe_charge_captured', true );
898
+		if (WC_Stripe_Helper::is_pre_30()) {
899
+			$order_currency = get_post_meta($order_id, '_order_currency', true);
900
+			$captured       = get_post_meta($order_id, '_stripe_charge_captured', true);
902 901
 		} else {
903 902
 			$order_currency = $order->get_currency();
904
-			$captured       = $order->get_meta( '_stripe_charge_captured', true );
903
+			$captured       = $order->get_meta('_stripe_charge_captured', true);
905 904
 		}
906 905
 
907
-		if ( ! is_null( $amount ) ) {
908
-			$request['amount'] = WC_Stripe_Helper::get_stripe_amount( $amount, $order_currency );
906
+		if ( ! is_null($amount)) {
907
+			$request['amount'] = WC_Stripe_Helper::get_stripe_amount($amount, $order_currency);
909 908
 		}
910 909
 
911 910
 		// If order is only authorized, don't pass amount.
912
-		if ( 'yes' !== $captured ) {
913
-			unset( $request['amount'] );
911
+		if ('yes' !== $captured) {
912
+			unset($request['amount']);
914 913
 		}
915 914
 
916
-		if ( $reason ) {
915
+		if ($reason) {
917 916
 			$request['metadata'] = array(
918 917
 				'reason' => $reason,
919 918
 			);
@@ -921,35 +920,35 @@  discard block
 block discarded – undo
921 920
 
922 921
 		$request['charge'] = $order->get_transaction_id();
923 922
 
924
-		WC_Stripe_Logger::log( "Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}" );
923
+		WC_Stripe_Logger::log("Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}");
925 924
 
926
-		$request = apply_filters( 'wc_stripe_refund_request', $request, $order );
925
+		$request = apply_filters('wc_stripe_refund_request', $request, $order);
927 926
 
928
-		$response = WC_Stripe_API::request( $request, 'refunds' );
927
+		$response = WC_Stripe_API::request($request, 'refunds');
929 928
 
930
-		if ( ! empty( $response->error ) ) {
931
-			WC_Stripe_Logger::log( 'Error: ' . $response->error->message );
929
+		if ( ! empty($response->error)) {
930
+			WC_Stripe_Logger::log('Error: ' . $response->error->message);
932 931
 
933 932
 			return $response;
934 933
 
935
-		} elseif ( ! empty( $response->id ) ) {
936
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_refund_id', $response->id ) : $order->update_meta_data( '_stripe_refund_id', $response->id );
934
+		} elseif ( ! empty($response->id)) {
935
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_refund_id', $response->id) : $order->update_meta_data('_stripe_refund_id', $response->id);
937 936
 
938
-			$amount = wc_price( $response->amount / 100 );
937
+			$amount = wc_price($response->amount / 100);
939 938
 
940
-			if ( in_array( strtolower( $order->get_currency() ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
941
-				$amount = wc_price( $response->amount );
939
+			if (in_array(strtolower($order->get_currency()), WC_Stripe_Helper::no_decimal_currencies())) {
940
+				$amount = wc_price($response->amount);
942 941
 			}
943 942
 
944
-			if ( isset( $response->balance_transaction ) ) {
945
-				$this->update_fees( $order, $response->balance_transaction );
943
+			if (isset($response->balance_transaction)) {
944
+				$this->update_fees($order, $response->balance_transaction);
946 945
 			}
947 946
 
948 947
 			/* translators: 1) dollar amount 2) transaction id 3) refund message */
949
-			$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' );
948
+			$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');
950 949
 
951
-			$order->add_order_note( $refund_message );
952
-			WC_Stripe_Logger::log( 'Success: ' . html_entity_decode( strip_tags( $refund_message ) ) );
950
+			$order->add_order_note($refund_message);
951
+			WC_Stripe_Logger::log('Success: ' . html_entity_decode(strip_tags($refund_message)));
953 952
 
954 953
 			return true;
955 954
 		}
@@ -964,44 +963,44 @@  discard block
 block discarded – undo
964 963
 	 */
965 964
 	public function add_payment_method() {
966 965
 		$error     = false;
967
-		$error_msg = __( 'There was a problem adding the card.', 'woocommerce-gateway-stripe' );
966
+		$error_msg = __('There was a problem adding the card.', 'woocommerce-gateway-stripe');
968 967
 		$source_id = '';
969 968
 
970
-		if ( empty( $_POST['stripe_source'] ) && empty( $_POST['stripe_token'] ) || ! is_user_logged_in() ) {
969
+		if (empty($_POST['stripe_source']) && empty($_POST['stripe_token']) || ! is_user_logged_in()) {
971 970
 			$error = true;
972 971
 		}
973 972
 
974
-		$stripe_customer = new WC_Stripe_Customer( get_current_user_id() );
973
+		$stripe_customer = new WC_Stripe_Customer(get_current_user_id());
975 974
 
976
-		$source = ! empty( $_POST['stripe_source'] ) ? wc_clean( $_POST['stripe_source'] ) : '';
975
+		$source = ! empty($_POST['stripe_source']) ? wc_clean($_POST['stripe_source']) : '';
977 976
 
978
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source );
977
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source);
979 978
 
980
-		if ( isset( $source_object ) ) {
981
-			if ( ! empty( $source_object->error ) ) {
979
+		if (isset($source_object)) {
980
+			if ( ! empty($source_object->error)) {
982 981
 				$error = true;
983 982
 			}
984 983
 
985 984
 			$source_id = $source_object->id;
986
-		} elseif ( isset( $_POST['stripe_token'] ) ) {
987
-			$source_id = wc_clean( $_POST['stripe_token'] );
985
+		} elseif (isset($_POST['stripe_token'])) {
986
+			$source_id = wc_clean($_POST['stripe_token']);
988 987
 		}
989 988
 
990
-		$response = $stripe_customer->add_source( $source_id );
989
+		$response = $stripe_customer->add_source($source_id);
991 990
 
992
-		if ( ! $response || is_wp_error( $response ) || ! empty( $response->error ) ) {
991
+		if ( ! $response || is_wp_error($response) || ! empty($response->error)) {
993 992
 			$error = true;
994 993
 		}
995 994
 
996
-		if ( $error ) {
997
-			wc_add_notice( $error_msg, 'error' );
998
-			WC_Stripe_Logger::log( 'Add payment method Error: ' . $error_msg );
995
+		if ($error) {
996
+			wc_add_notice($error_msg, 'error');
997
+			WC_Stripe_Logger::log('Add payment method Error: ' . $error_msg);
999 998
 			return;
1000 999
 		}
1001 1000
 
1002 1001
 		return array(
1003 1002
 			'result'   => 'success',
1004
-			'redirect' => wc_get_endpoint_url( 'payment-methods' ),
1003
+			'redirect' => wc_get_endpoint_url('payment-methods'),
1005 1004
 		);
1006 1005
 	}
1007 1006
 
@@ -1018,10 +1017,10 @@  discard block
 block discarded – undo
1018 1017
 		 * Stripe expects Norwegian to only be passed NO.
1019 1018
 		 * But WP has different dialects.
1020 1019
 		 */
1021
-		if ( 'NO' === substr( $locale, 3, 2 ) ) {
1020
+		if ('NO' === substr($locale, 3, 2)) {
1022 1021
 			$locale = 'no';
1023 1022
 		} else {
1024
-			$locale = substr( get_locale(), 0, 2 );
1023
+			$locale = substr(get_locale(), 0, 2);
1025 1024
 		}
1026 1025
 
1027 1026
 		return $locale;
@@ -1035,9 +1034,9 @@  discard block
 block discarded – undo
1035 1034
 	 * @param string $idempotency_key
1036 1035
 	 * @param array $request
1037 1036
 	 */
1038
-	public function change_idempotency_key( $idempotency_key, $request ) {
1039
-		$customer = ! empty( $request['customer'] ) ? $request['customer'] : '';
1040
-		$source   = ! empty( $request['source'] ) ? $request['source'] : $customer;
1037
+	public function change_idempotency_key($idempotency_key, $request) {
1038
+		$customer = ! empty($request['customer']) ? $request['customer'] : '';
1039
+		$source   = ! empty($request['source']) ? $request['source'] : $customer;
1041 1040
 		$count    = $this->retry_interval;
1042 1041
 
1043 1042
 		return $request['metadata']['order_id'] . '-' . $count . '-' . $source;
@@ -1051,8 +1050,8 @@  discard block
 block discarded – undo
1051 1050
 	 * @since 4.0.6
1052 1051
 	 * @param array $headers
1053 1052
 	 */
1054
-	public function is_original_request( $headers ) {
1055
-		if ( $headers['original-request'] === $headers['request-id'] ) {
1053
+	public function is_original_request($headers) {
1054
+		if ($headers['original-request'] === $headers['request-id']) {
1056 1055
 			return true;
1057 1056
 		}
1058 1057
 
Please login to merge, or discard this patch.
includes/class-wc-stripe-helper.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@
 block discarded – undo
227 227
 	/**
228 228
 	 * List of currencies supported by Stripe that has no decimals.
229 229
 	 *
230
-	 * @return array $currencies
230
+	 * @return string[] $currencies
231 231
 	 */
232 232
 	public static function no_decimal_currencies() {
233 233
 		return array(
Please login to merge, or discard this patch.
Spacing   +86 added lines, -86 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
 
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
 	 * @param object $order
23 23
 	 * @return string $currency
24 24
 	 */
25
-	public static function get_stripe_currency( $order = null ) {
26
-		if ( is_null( $order ) ) {
25
+	public static function get_stripe_currency($order = null) {
26
+		if (is_null($order)) {
27 27
 			return false;
28 28
 		}
29 29
 
30 30
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
31 31
 
32
-		return WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, self::META_NAME_STRIPE_CURRENCY, true ) : $order->get_meta( self::META_NAME_STRIPE_CURRENCY, true );
32
+		return WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, self::META_NAME_STRIPE_CURRENCY, true) : $order->get_meta(self::META_NAME_STRIPE_CURRENCY, true);
33 33
 	}
34 34
 
35 35
 	/**
@@ -39,14 +39,14 @@  discard block
 block discarded – undo
39 39
 	 * @param object $order
40 40
 	 * @param string $currency
41 41
 	 */
42
-	public static function update_stripe_currency( $order = null, $currency ) {
43
-		if ( is_null( $order ) ) {
42
+	public static function update_stripe_currency($order = null, $currency) {
43
+		if (is_null($order)) {
44 44
 			return false;
45 45
 		}
46 46
 
47 47
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
48 48
 
49
-		WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, self::META_NAME_STRIPE_CURRENCY, $currency ) : $order->update_meta_data( self::META_NAME_STRIPE_CURRENCY, $currency );
49
+		WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, self::META_NAME_STRIPE_CURRENCY, $currency) : $order->update_meta_data(self::META_NAME_STRIPE_CURRENCY, $currency);
50 50
 	}
51 51
 
52 52
 	/**
@@ -56,22 +56,22 @@  discard block
 block discarded – undo
56 56
 	 * @param object $order
57 57
 	 * @return string $amount
58 58
 	 */
59
-	public static function get_stripe_fee( $order = null ) {
60
-		if ( is_null( $order ) ) {
59
+	public static function get_stripe_fee($order = null) {
60
+		if (is_null($order)) {
61 61
 			return false;
62 62
 		}
63 63
 
64 64
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
65 65
 
66
-		$amount = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, self::META_NAME_FEE, true ) : $order->get_meta( self::META_NAME_FEE, true );
66
+		$amount = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, self::META_NAME_FEE, true) : $order->get_meta(self::META_NAME_FEE, true);
67 67
 
68 68
 		// If not found let's check for legacy name.
69
-		if ( empty( $amount ) ) {
70
-			$amount = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, self::LEGACY_META_NAME_FEE, true ) : $order->get_meta( self::LEGACY_META_NAME_FEE, true );
69
+		if (empty($amount)) {
70
+			$amount = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, self::LEGACY_META_NAME_FEE, true) : $order->get_meta(self::LEGACY_META_NAME_FEE, true);
71 71
 
72 72
 			// If found update to new name.
73
-			if ( $amount ) {
74
-				self::update_stripe_fee( $order, $amount );
73
+			if ($amount) {
74
+				self::update_stripe_fee($order, $amount);
75 75
 			}
76 76
 		}
77 77
 
@@ -85,14 +85,14 @@  discard block
 block discarded – undo
85 85
 	 * @param object $order
86 86
 	 * @param float $amount
87 87
 	 */
88
-	public static function update_stripe_fee( $order = null, $amount = 0.0 ) {
89
-		if ( is_null( $order ) ) {
88
+	public static function update_stripe_fee($order = null, $amount = 0.0) {
89
+		if (is_null($order)) {
90 90
 			return false;
91 91
 		}
92 92
 
93 93
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
94 94
 
95
-		WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, self::META_NAME_FEE, $amount ) : $order->update_meta_data( self::META_NAME_FEE, $amount );
95
+		WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, self::META_NAME_FEE, $amount) : $order->update_meta_data(self::META_NAME_FEE, $amount);
96 96
 	}
97 97
 
98 98
 	/**
@@ -101,15 +101,15 @@  discard block
 block discarded – undo
101 101
 	 * @since 4.1.0
102 102
 	 * @param object $order
103 103
 	 */
104
-	public static function delete_stripe_fee( $order = null ) {
105
-		if ( is_null( $order ) ) {
104
+	public static function delete_stripe_fee($order = null) {
105
+		if (is_null($order)) {
106 106
 			return false;
107 107
 		}
108 108
 
109 109
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
110 110
 
111
-		delete_post_meta( $order_id, self::META_NAME_FEE );
112
-		delete_post_meta( $order_id, self::LEGACY_META_NAME_FEE );
111
+		delete_post_meta($order_id, self::META_NAME_FEE);
112
+		delete_post_meta($order_id, self::LEGACY_META_NAME_FEE);
113 113
 	}
114 114
 
115 115
 	/**
@@ -119,22 +119,22 @@  discard block
 block discarded – undo
119 119
 	 * @param object $order
120 120
 	 * @return string $amount
121 121
 	 */
122
-	public static function get_stripe_net( $order = null ) {
123
-		if ( is_null( $order ) ) {
122
+	public static function get_stripe_net($order = null) {
123
+		if (is_null($order)) {
124 124
 			return false;
125 125
 		}
126 126
 
127 127
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
128 128
 
129
-		$amount = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, self::META_NAME_NET, true ) : $order->get_meta( self::META_NAME_NET, true );
129
+		$amount = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, self::META_NAME_NET, true) : $order->get_meta(self::META_NAME_NET, true);
130 130
 
131 131
 		// If not found let's check for legacy name.
132
-		if ( empty( $amount ) ) {
133
-			$amount = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, self::LEGACY_META_NAME_NET, true ) : $order->get_meta( self::LEGACY_META_NAME_NET, true );
132
+		if (empty($amount)) {
133
+			$amount = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, self::LEGACY_META_NAME_NET, true) : $order->get_meta(self::LEGACY_META_NAME_NET, true);
134 134
 
135 135
 			// If found update to new name.
136
-			if ( $amount ) {
137
-				self::update_stripe_net( $order, $amount );
136
+			if ($amount) {
137
+				self::update_stripe_net($order, $amount);
138 138
 			}
139 139
 		}
140 140
 
@@ -148,14 +148,14 @@  discard block
 block discarded – undo
148 148
 	 * @param object $order
149 149
 	 * @param float $amount
150 150
 	 */
151
-	public static function update_stripe_net( $order = null, $amount = 0.0 ) {
152
-		if ( is_null( $order ) ) {
151
+	public static function update_stripe_net($order = null, $amount = 0.0) {
152
+		if (is_null($order)) {
153 153
 			return false;
154 154
 		}
155 155
 
156 156
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
157 157
 
158
-		WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, self::META_NAME_NET, $amount ) : $order->update_meta_data( self::META_NAME_NET, $amount );
158
+		WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, self::META_NAME_NET, $amount) : $order->update_meta_data(self::META_NAME_NET, $amount);
159 159
 	}
160 160
 
161 161
 	/**
@@ -164,15 +164,15 @@  discard block
 block discarded – undo
164 164
 	 * @since 4.1.0
165 165
 	 * @param object $order
166 166
 	 */
167
-	public static function delete_stripe_net( $order = null ) {
168
-		if ( is_null( $order ) ) {
167
+	public static function delete_stripe_net($order = null) {
168
+		if (is_null($order)) {
169 169
 			return false;
170 170
 		}
171 171
 
172 172
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
173 173
 
174
-		delete_post_meta( $order_id, self::META_NAME_NET );
175
-		delete_post_meta( $order_id, self::LEGACY_META_NAME_NET );
174
+		delete_post_meta($order_id, self::META_NAME_NET);
175
+		delete_post_meta($order_id, self::LEGACY_META_NAME_NET);
176 176
 	}
177 177
 
178 178
 	/**
@@ -183,15 +183,15 @@  discard block
 block discarded – undo
183 183
 	 *
184 184
 	 * @return float|int
185 185
 	 */
186
-	public static function get_stripe_amount( $total, $currency = '' ) {
187
-		if ( ! $currency ) {
186
+	public static function get_stripe_amount($total, $currency = '') {
187
+		if ( ! $currency) {
188 188
 			$currency = get_woocommerce_currency();
189 189
 		}
190 190
 
191
-		if ( in_array( strtolower( $currency ), self::no_decimal_currencies() ) ) {
192
-			return absint( $total );
191
+		if (in_array(strtolower($currency), self::no_decimal_currencies())) {
192
+			return absint($total);
193 193
 		} else {
194
-			return absint( wc_format_decimal( ( (float) $total * 100 ), wc_get_price_decimals() ) ); // In cents.
194
+			return absint(wc_format_decimal(((float) $total * 100), wc_get_price_decimals())); // In cents.
195 195
 		}
196 196
 	}
197 197
 
@@ -203,25 +203,25 @@  discard block
 block discarded – undo
203 203
 	 * @return array
204 204
 	 */
205 205
 	public static function get_localized_messages() {
206
-		return apply_filters( 'wc_stripe_localized_messages', array(
207
-			'invalid_number'           => __( 'The card number is not a valid credit card number.', 'woocommerce-gateway-stripe' ),
208
-			'invalid_expiry_month'     => __( 'The card\'s expiration month is invalid.', 'woocommerce-gateway-stripe' ),
209
-			'invalid_expiry_year'      => __( 'The card\'s expiration year is invalid.', 'woocommerce-gateway-stripe' ),
210
-			'invalid_cvc'              => __( 'The card\'s security code is invalid.', 'woocommerce-gateway-stripe' ),
211
-			'incorrect_number'         => __( 'The card number is incorrect.', 'woocommerce-gateway-stripe' ),
212
-			'incomplete_number'        => __( 'The card number is incomplete.', 'woocommerce-gateway-stripe' ),
213
-			'incomplete_cvc'           => __( 'The card\'s security code is incomplete.', 'woocommerce-gateway-stripe' ),
214
-			'incomplete_expiry'        => __( 'The card\'s expiration date is incomplete.', 'woocommerce-gateway-stripe' ),
215
-			'expired_card'             => __( 'The card has expired.', 'woocommerce-gateway-stripe' ),
216
-			'incorrect_cvc'            => __( 'The card\'s security code is incorrect.', 'woocommerce-gateway-stripe' ),
217
-			'incorrect_zip'            => __( 'The card\'s zip code failed validation.', 'woocommerce-gateway-stripe' ),
218
-			'invalid_expiry_year_past' => __( 'The card\'s expiration year is in the past', 'woocommerce-gateway-stripe' ),
219
-			'card_declined'            => __( 'The card was declined.', 'woocommerce-gateway-stripe' ),
220
-			'missing'                  => __( 'There is no card on a customer that is being charged.', 'woocommerce-gateway-stripe' ),
221
-			'processing_error'         => __( 'An error occurred while processing the card.', 'woocommerce-gateway-stripe' ),
222
-			'invalid_request_error'    => __( 'Unable to process this payment, please try again or use alternative method.', 'woocommerce-gateway-stripe' ),
223
-			'invalid_sofort_country'   => __( 'The billing country is not accepted by SOFORT. Please try another country.', 'woocommerce-gateway-stripe' ),
224
-		) );
206
+		return apply_filters('wc_stripe_localized_messages', array(
207
+			'invalid_number'           => __('The card number is not a valid credit card number.', 'woocommerce-gateway-stripe'),
208
+			'invalid_expiry_month'     => __('The card\'s expiration month is invalid.', 'woocommerce-gateway-stripe'),
209
+			'invalid_expiry_year'      => __('The card\'s expiration year is invalid.', 'woocommerce-gateway-stripe'),
210
+			'invalid_cvc'              => __('The card\'s security code is invalid.', 'woocommerce-gateway-stripe'),
211
+			'incorrect_number'         => __('The card number is incorrect.', 'woocommerce-gateway-stripe'),
212
+			'incomplete_number'        => __('The card number is incomplete.', 'woocommerce-gateway-stripe'),
213
+			'incomplete_cvc'           => __('The card\'s security code is incomplete.', 'woocommerce-gateway-stripe'),
214
+			'incomplete_expiry'        => __('The card\'s expiration date is incomplete.', 'woocommerce-gateway-stripe'),
215
+			'expired_card'             => __('The card has expired.', 'woocommerce-gateway-stripe'),
216
+			'incorrect_cvc'            => __('The card\'s security code is incorrect.', 'woocommerce-gateway-stripe'),
217
+			'incorrect_zip'            => __('The card\'s zip code failed validation.', 'woocommerce-gateway-stripe'),
218
+			'invalid_expiry_year_past' => __('The card\'s expiration year is in the past', 'woocommerce-gateway-stripe'),
219
+			'card_declined'            => __('The card was declined.', 'woocommerce-gateway-stripe'),
220
+			'missing'                  => __('There is no card on a customer that is being charged.', 'woocommerce-gateway-stripe'),
221
+			'processing_error'         => __('An error occurred while processing the card.', 'woocommerce-gateway-stripe'),
222
+			'invalid_request_error'    => __('Unable to process this payment, please try again or use alternative method.', 'woocommerce-gateway-stripe'),
223
+			'invalid_sofort_country'   => __('The billing country is not accepted by SOFORT. Please try another country.', 'woocommerce-gateway-stripe'),
224
+		));
225 225
 	}
226 226
 
227 227
 	/**
@@ -258,24 +258,24 @@  discard block
 block discarded – undo
258 258
 	 * @param string $type Type of number to format
259 259
 	 * @return string
260 260
 	 */
261
-	public static function format_balance_fee( $balance_transaction, $type = 'fee' ) {
262
-		if ( ! is_object( $balance_transaction ) ) {
261
+	public static function format_balance_fee($balance_transaction, $type = 'fee') {
262
+		if ( ! is_object($balance_transaction)) {
263 263
 			return;
264 264
 		}
265 265
 
266
-		if ( in_array( strtolower( $balance_transaction->currency ), self::no_decimal_currencies() ) ) {
267
-			if ( 'fee' === $type ) {
266
+		if (in_array(strtolower($balance_transaction->currency), self::no_decimal_currencies())) {
267
+			if ('fee' === $type) {
268 268
 				return $balance_transaction->fee;
269 269
 			}
270 270
 
271 271
 			return $balance_transaction->net;
272 272
 		}
273 273
 
274
-		if ( 'fee' === $type ) {
275
-			return number_format( $balance_transaction->fee / 100, 2, '.', '' );
274
+		if ('fee' === $type) {
275
+			return number_format($balance_transaction->fee / 100, 2, '.', '');
276 276
 		}
277 277
 
278
-		return number_format( $balance_transaction->net / 100, 2, '.', '' );
278
+		return number_format($balance_transaction->net / 100, 2, '.', '');
279 279
 	}
280 280
 
281 281
 	/**
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 	 */
284 284
 	public static function get_minimum_amount() {
285 285
 		// Check order amount
286
-		switch ( get_woocommerce_currency() ) {
286
+		switch (get_woocommerce_currency()) {
287 287
 			case 'USD':
288 288
 			case 'CAD':
289 289
 			case 'EUR':
@@ -328,14 +328,14 @@  discard block
 block discarded – undo
328 328
 	 * @param string $method The payment method to get the settings from.
329 329
 	 * @param string $setting The name of the setting to get.
330 330
 	 */
331
-	public static function get_settings( $method = null, $setting = null ) {
332
-		$all_settings = null === $method ? get_option( 'woocommerce_stripe_settings', array() ) : get_option( 'woocommerce_stripe_' . $method . '_settings', array() );
331
+	public static function get_settings($method = null, $setting = null) {
332
+		$all_settings = null === $method ? get_option('woocommerce_stripe_settings', array()) : get_option('woocommerce_stripe_' . $method . '_settings', array());
333 333
 
334
-		if ( null === $setting ) {
334
+		if (null === $setting) {
335 335
 			return $all_settings;
336 336
 		}
337 337
 
338
-		return isset( $all_settings[ $setting ] ) ? $all_settings[ $setting ] : '';
338
+		return isset($all_settings[$setting]) ? $all_settings[$setting] : '';
339 339
 	}
340 340
 
341 341
 	/**
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
 	 * @return bool
346 346
 	 */
347 347
 	public static function is_pre_orders_exists() {
348
-		return class_exists( 'WC_Pre_Orders_Order' );
348
+		return class_exists('WC_Pre_Orders_Order');
349 349
 	}
350 350
 
351 351
 	/**
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
 	 * @return bool
357 357
 	 */
358 358
 	public static function is_pre_30() {
359
-		return version_compare( WC_VERSION, '3.0.0', '<' );
359
+		return version_compare(WC_VERSION, '3.0.0', '<');
360 360
 	}
361 361
 
362 362
 	/**
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
 	 * @return string
370 370
 	 */
371 371
 	public static function get_webhook_url() {
372
-		return add_query_arg( 'wc-api', 'wc_stripe', trailingslashit( get_home_url() ) );
372
+		return add_query_arg('wc-api', 'wc_stripe', trailingslashit(get_home_url()));
373 373
 	}
374 374
 
375 375
 	/**
@@ -379,13 +379,13 @@  discard block
 block discarded – undo
379 379
 	 * @version 4.0.0
380 380
 	 * @param string $source_id
381 381
 	 */
382
-	public static function get_order_by_source_id( $source_id ) {
382
+	public static function get_order_by_source_id($source_id) {
383 383
 		global $wpdb;
384 384
 
385
-		$order_id = $wpdb->get_var( $wpdb->prepare( "SELECT DISTINCT ID FROM $wpdb->posts as posts LEFT JOIN $wpdb->postmeta as meta ON posts.ID = meta.post_id WHERE meta.meta_value = %s", $source_id ) );
385
+		$order_id = $wpdb->get_var($wpdb->prepare("SELECT DISTINCT ID FROM $wpdb->posts as posts LEFT JOIN $wpdb->postmeta as meta ON posts.ID = meta.post_id WHERE meta.meta_value = %s", $source_id));
386 386
 
387
-		if ( ! empty( $order_id ) ) {
388
-			return wc_get_order( $order_id );
387
+		if ( ! empty($order_id)) {
388
+			return wc_get_order($order_id);
389 389
 		}
390 390
 
391 391
 		return false;
@@ -398,13 +398,13 @@  discard block
 block discarded – undo
398 398
 	 * @version 4.0.0
399 399
 	 * @param string $charge_id
400 400
 	 */
401
-	public static function get_order_by_charge_id( $charge_id ) {
401
+	public static function get_order_by_charge_id($charge_id) {
402 402
 		global $wpdb;
403 403
 
404
-		$order_id = $wpdb->get_var( $wpdb->prepare( "SELECT DISTINCT ID FROM $wpdb->posts as posts LEFT JOIN $wpdb->postmeta as meta ON posts.ID = meta.post_id WHERE meta.meta_value = %s", $charge_id ) );
404
+		$order_id = $wpdb->get_var($wpdb->prepare("SELECT DISTINCT ID FROM $wpdb->posts as posts LEFT JOIN $wpdb->postmeta as meta ON posts.ID = meta.post_id WHERE meta.meta_value = %s", $charge_id));
405 405
 
406
-		if ( ! empty( $order_id ) ) {
407
-			return wc_get_order( $order_id );
406
+		if ( ! empty($order_id)) {
407
+			return wc_get_order($order_id);
408 408
 		}
409 409
 
410 410
 		return false;
@@ -420,13 +420,13 @@  discard block
 block discarded – undo
420 420
 	 * @param string $statement_descriptor
421 421
 	 * @return string $statement_descriptor Sanitized statement descriptor
422 422
 	 */
423
-	public static function clean_statement_descriptor( $statement_descriptor = '' ) {
424
-		$disallowed_characters = array( '<', '>', '"', "'" );
423
+	public static function clean_statement_descriptor($statement_descriptor = '') {
424
+		$disallowed_characters = array('<', '>', '"', "'");
425 425
 
426 426
 		// Remove special characters.
427
-		$statement_descriptor = str_replace( $disallowed_characters, '', $statement_descriptor );
427
+		$statement_descriptor = str_replace($disallowed_characters, '', $statement_descriptor);
428 428
 
429
-		$statement_descriptor = substr( trim( $statement_descriptor ), 0, 22 );
429
+		$statement_descriptor = substr(trim($statement_descriptor), 0, 22);
430 430
 
431 431
 		return $statement_descriptor;
432 432
 	}
Please login to merge, or discard this patch.
includes/compat/class-wc-stripe-sepa-subs-compat.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 	 * @param float $amount
139 139
 	 * @param mixed $renewal_order
140 140
 	 * @param bool $retry Should we retry the process?
141
-	 * @param object $previous_error
141
+	 * @param boolean $previous_error
142 142
 	 */
143 143
 	public function process_subscription_payment( $amount = 0.0, $renewal_order, $retry = true, $previous_error ) {
144 144
 		try {
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
 
242 242
 	/**
243 243
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
244
-	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
244
+	 * @param integer $renewal_order
245 245
 	 */
246 246
 	public function delete_renewal_meta( $renewal_order ) {
247 247
 		WC_Stripe_Helper::delete_stripe_fee( $renewal_order );
Please login to merge, or discard this patch.
Spacing   +127 added lines, -127 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
 
@@ -15,19 +15,19 @@  discard block
 block discarded – undo
15 15
 	public function __construct() {
16 16
 		parent::__construct();
17 17
 
18
-		if ( class_exists( 'WC_Subscriptions_Order' ) ) {
19
-			add_action( 'woocommerce_scheduled_subscription_payment_' . $this->id, array( $this, 'scheduled_subscription_payment' ), 10, 2 );
20
-			add_action( 'wcs_resubscribe_order_created', array( $this, 'delete_resubscribe_meta' ), 10 );
21
-			add_action( 'wcs_renewal_order_created', array( $this, 'delete_renewal_meta' ), 10 );
22
-			add_action( 'woocommerce_subscription_failing_payment_method_updated_stripe', array( $this, 'update_failing_payment_method' ), 10, 2 );
18
+		if (class_exists('WC_Subscriptions_Order')) {
19
+			add_action('woocommerce_scheduled_subscription_payment_' . $this->id, array($this, 'scheduled_subscription_payment'), 10, 2);
20
+			add_action('wcs_resubscribe_order_created', array($this, 'delete_resubscribe_meta'), 10);
21
+			add_action('wcs_renewal_order_created', array($this, 'delete_renewal_meta'), 10);
22
+			add_action('woocommerce_subscription_failing_payment_method_updated_stripe', array($this, 'update_failing_payment_method'), 10, 2);
23 23
 
24 24
 			// Display the credit card used for a subscription in the "My Subscriptions" table.
25
-			add_filter( 'woocommerce_my_subscriptions_payment_method', array( $this, 'maybe_render_subscription_payment_method' ), 10, 2 );
25
+			add_filter('woocommerce_my_subscriptions_payment_method', array($this, 'maybe_render_subscription_payment_method'), 10, 2);
26 26
 
27 27
 			// Allow store managers to manually set Stripe as the payment method on a subscription.
28
-			add_filter( 'woocommerce_subscription_payment_meta', array( $this, 'add_subscription_payment_meta' ), 10, 2 );
29
-			add_filter( 'woocommerce_subscription_validate_payment_meta', array( $this, 'validate_subscription_payment_meta' ), 10, 2 );
30
-			add_filter( 'wc_stripe_display_save_payment_method_checkbox', array( $this, 'maybe_hide_save_checkbox' ) );
28
+			add_filter('woocommerce_subscription_payment_meta', array($this, 'add_subscription_payment_meta'), 10, 2);
29
+			add_filter('woocommerce_subscription_validate_payment_meta', array($this, 'validate_subscription_payment_meta'), 10, 2);
30
+			add_filter('wc_stripe_display_save_payment_method_checkbox', array($this, 'maybe_hide_save_checkbox'));
31 31
 		}
32 32
 	}
33 33
 
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	 * @since 4.0.0
48 48
 	 * @version 4.0.0
49 49
 	 */
50
-	public function maybe_hide_save_checkbox( $display_tokenization ) {
51
-		if ( WC_Subscriptions_Cart::cart_contains_subscription() ) {
50
+	public function maybe_hide_save_checkbox($display_tokenization) {
51
+		if (WC_Subscriptions_Cart::cart_contains_subscription()) {
52 52
 			return false;
53 53
 		}
54 54
 
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 	 * @param  int  $order_id
61 61
 	 * @return boolean
62 62
 	 */
63
-	public function has_subscription( $order_id ) {
64
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
63
+	public function has_subscription($order_id) {
64
+		return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id)));
65 65
 	}
66 66
 
67 67
 	/**
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 	 * @return bool
72 72
 	 */
73 73
 	public function is_subs_change_payment() {
74
-		return ( isset( $_GET['pay_for_order'] ) && isset( $_GET['change_payment_method'] ) );
74
+		return (isset($_GET['pay_for_order']) && isset($_GET['change_payment_method']));
75 75
 	}
76 76
 
77 77
 	/**
@@ -80,24 +80,24 @@  discard block
 block discarded – undo
80 80
 	 * @since 3.1.0
81 81
 	 * @version 4.0.0
82 82
 	 */
83
-	public function save_source_to_order( $order, $source ) {
84
-		parent::save_source_to_order( $order, $source );
83
+	public function save_source_to_order($order, $source) {
84
+		parent::save_source_to_order($order, $source);
85 85
 
86
-		$order_id  = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
86
+		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
87 87
 
88 88
 		// Also store it on the subscriptions being purchased or paid for in the order.
89
-		if ( function_exists( 'wcs_order_contains_subscription' ) && wcs_order_contains_subscription( $order_id ) ) {
90
-			$subscriptions = wcs_get_subscriptions_for_order( $order_id );
91
-		} elseif ( function_exists( 'wcs_order_contains_renewal' ) && wcs_order_contains_renewal( $order_id ) ) {
92
-			$subscriptions = wcs_get_subscriptions_for_renewal_order( $order_id );
89
+		if (function_exists('wcs_order_contains_subscription') && wcs_order_contains_subscription($order_id)) {
90
+			$subscriptions = wcs_get_subscriptions_for_order($order_id);
91
+		} elseif (function_exists('wcs_order_contains_renewal') && wcs_order_contains_renewal($order_id)) {
92
+			$subscriptions = wcs_get_subscriptions_for_renewal_order($order_id);
93 93
 		} else {
94 94
 			$subscriptions = array();
95 95
 		}
96 96
 
97
-		foreach ( $subscriptions as $subscription ) {
97
+		foreach ($subscriptions as $subscription) {
98 98
 			$subscription_id = WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id();
99
-			update_post_meta( $subscription_id, '_stripe_customer_id', $source->customer );
100
-			update_post_meta( $subscription_id, '_stripe_source_id', $source->source );
99
+			update_post_meta($subscription_id, '_stripe_customer_id', $source->customer);
100
+			update_post_meta($subscription_id, '_stripe_source_id', $source->source);
101 101
 		}
102 102
 	}
103 103
 
@@ -106,16 +106,16 @@  discard block
 block discarded – undo
106 106
 	 * @param  int $order_id
107 107
 	 * @return array
108 108
 	 */
109
-	public function process_payment( $order_id, $retry = true, $force_save_source = false, $previous_error = false ) {
110
-		if ( $this->has_subscription( $order_id ) ) {
111
-			if ( $this->is_subs_change_payment() ) {
112
-				return $this->change_subs_payment_method( $order_id );
109
+	public function process_payment($order_id, $retry = true, $force_save_source = false, $previous_error = false) {
110
+		if ($this->has_subscription($order_id)) {
111
+			if ($this->is_subs_change_payment()) {
112
+				return $this->change_subs_payment_method($order_id);
113 113
 			}
114 114
 
115 115
 			// Regular payment with force customer enabled
116
-			return parent::process_payment( $order_id, $retry, true, $previous_error );
116
+			return parent::process_payment($order_id, $retry, true, $previous_error);
117 117
 		} else {
118
-			return parent::process_payment( $order_id, $retry, $force_save_source, $previous_error );
118
+			return parent::process_payment($order_id, $retry, $force_save_source, $previous_error);
119 119
 		}
120 120
 	}
121 121
 
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
 	 * @param $amount_to_charge float The amount to charge.
126 126
 	 * @param $renewal_order WC_Order A WC_Order object created to record the renewal payment.
127 127
 	 */
128
-	public function scheduled_subscription_payment( $amount_to_charge, $renewal_order ) {
129
-		$this->process_subscription_payment( $amount_to_charge, $renewal_order, true, false );
128
+	public function scheduled_subscription_payment($amount_to_charge, $renewal_order) {
129
+		$this->process_subscription_payment($amount_to_charge, $renewal_order, true, false);
130 130
 	}
131 131
 
132 132
 	/**
@@ -140,89 +140,89 @@  discard block
 block discarded – undo
140 140
 	 * @param bool $retry Should we retry the process?
141 141
 	 * @param object $previous_error
142 142
 	 */
143
-	public function process_subscription_payment( $amount = 0.0, $renewal_order, $retry = true, $previous_error ) {
143
+	public function process_subscription_payment($amount = 0.0, $renewal_order, $retry = true, $previous_error) {
144 144
 		try {
145
-			if ( $amount * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
145
+			if ($amount * 100 < WC_Stripe_Helper::get_minimum_amount()) {
146 146
 				/* translators: minimum amount */
147
-				return new WP_Error( 'stripe_error', 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 ) ) );
147
+				return new WP_Error('stripe_error', 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)));
148 148
 			}
149 149
 
150 150
 			$order_id = WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id();
151 151
 
152 152
 			// Get source from order
153
-			$prepared_source = $this->prepare_order_source( $renewal_order );
153
+			$prepared_source = $this->prepare_order_source($renewal_order);
154 154
 			$source_object   = $prepared_source->source_object;
155 155
 
156
-			if ( ! $prepared_source->customer ) {
157
-				return new WP_Error( 'stripe_error', __( 'Customer not found', 'woocommerce-gateway-stripe' ) );
156
+			if ( ! $prepared_source->customer) {
157
+				return new WP_Error('stripe_error', __('Customer not found', 'woocommerce-gateway-stripe'));
158 158
 			}
159 159
 
160
-			WC_Stripe_Logger::log( "Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}" );
160
+			WC_Stripe_Logger::log("Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}");
161 161
 
162 162
 			/* If we're doing a retry and source is chargeable, we need to pass
163 163
 			 * a different idempotency key and retry for success.
164 164
 			 */
165
-			if ( is_object( $source_object ) && empty( $source_object->error ) && $this->need_update_idempotency_key( $source_object, $previous_error ) ) {
166
-				add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
165
+			if (is_object($source_object) && empty($source_object->error) && $this->need_update_idempotency_key($source_object, $previous_error)) {
166
+				add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
167 167
 			}
168 168
 
169
-			if ( ( $this->is_no_such_source_error( $previous_error ) || $this->is_no_linked_source_error( $previous_error ) ) && apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
169
+			if (($this->is_no_such_source_error($previous_error) || $this->is_no_linked_source_error($previous_error)) && apply_filters('wc_stripe_use_default_customer_source', true)) {
170 170
 				// Passing empty source will charge customer default.
171 171
 				$prepared_source->source = '';
172 172
 			}
173 173
 
174
-			$request            = $this->generate_payment_request( $renewal_order, $prepared_source );
174
+			$request            = $this->generate_payment_request($renewal_order, $prepared_source);
175 175
 			$request['capture'] = 'true';
176
-			$request['amount']  = WC_Stripe_Helper::get_stripe_amount( $amount, $request['currency'] );
177
-			$response           = WC_Stripe_API::request( $request );
176
+			$request['amount']  = WC_Stripe_Helper::get_stripe_amount($amount, $request['currency']);
177
+			$response           = WC_Stripe_API::request($request);
178 178
 
179
-			if ( ! empty( $response->error ) ) {
179
+			if ( ! empty($response->error)) {
180 180
 				// We want to retry.
181
-				if ( $this->is_retryable_error( $response->error ) ) {
182
-					if ( $retry ) {
181
+				if ($this->is_retryable_error($response->error)) {
182
+					if ($retry) {
183 183
 						// Don't do anymore retries after this.
184
-						if ( 5 <= $this->retry_interval ) {
185
-							return $this->process_subscription_payment( $amount, $renewal_order, false, $response->error );
184
+						if (5 <= $this->retry_interval) {
185
+							return $this->process_subscription_payment($amount, $renewal_order, false, $response->error);
186 186
 						}
187 187
 
188
-						sleep( $this->retry_interval );
188
+						sleep($this->retry_interval);
189 189
 
190 190
 						$this->retry_interval++;
191 191
 
192
-						return $this->process_subscription_payment( $amount, $renewal_order, true, $response->error );
192
+						return $this->process_subscription_payment($amount, $renewal_order, true, $response->error);
193 193
 					} else {
194
-						$localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' );
195
-						$renewal_order->add_order_note( $localized_message );
196
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
194
+						$localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe');
195
+						$renewal_order->add_order_note($localized_message);
196
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
197 197
 					}
198 198
 				}
199 199
 
200 200
 				$localized_messages = WC_Stripe_Helper::get_localized_messages();
201 201
 
202
-				if ( 'card_error' === $response->error->type ) {
203
-					$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
202
+				if ('card_error' === $response->error->type) {
203
+					$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
204 204
 				} else {
205
-					$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
205
+					$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
206 206
 				}
207 207
 
208
-				$renewal_order->add_order_note( $localized_message );
208
+				$renewal_order->add_order_note($localized_message);
209 209
 
210
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
210
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
211 211
 			}
212 212
 
213
-			do_action( 'wc_gateway_stripe_process_payment', $response, $renewal_order );
213
+			do_action('wc_gateway_stripe_process_payment', $response, $renewal_order);
214 214
 
215
-			$this->process_response( $response, $renewal_order );
216
-		} catch ( WC_Stripe_Exception $e ) {
217
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
215
+			$this->process_response($response, $renewal_order);
216
+		} catch (WC_Stripe_Exception $e) {
217
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
218 218
 
219
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $renewal_order );
219
+			do_action('wc_gateway_stripe_process_payment_error', $e, $renewal_order);
220 220
 
221 221
 			/* translators: error message */
222
-			$renewal_order->update_status( 'failed' );
222
+			$renewal_order->update_status('failed');
223 223
 
224
-			if ( $renewal_order->has_status( array( 'pending', 'failed' ) ) ) {
225
-				$this->send_failed_order_email( $order_id );
224
+			if ($renewal_order->has_status(array('pending', 'failed'))) {
225
+				$this->send_failed_order_email($order_id);
226 226
 			}
227 227
 		}
228 228
 	}
@@ -231,21 +231,21 @@  discard block
 block discarded – undo
231 231
 	 * Don't transfer Stripe customer/token meta to resubscribe orders.
232 232
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
233 233
 	 */
234
-	public function delete_resubscribe_meta( $resubscribe_order ) {
235
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_customer_id' );
236
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_source_id' );
234
+	public function delete_resubscribe_meta($resubscribe_order) {
235
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_customer_id');
236
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_source_id');
237 237
 		// For BW compat will remove in future
238
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_card_id' );
239
-		$this->delete_renewal_meta( $resubscribe_order );
238
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_card_id');
239
+		$this->delete_renewal_meta($resubscribe_order);
240 240
 	}
241 241
 
242 242
 	/**
243 243
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
244 244
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
245 245
 	 */
246
-	public function delete_renewal_meta( $renewal_order ) {
247
-		WC_Stripe_Helper::delete_stripe_fee( $renewal_order );
248
-		WC_Stripe_Helper::delete_stripe_net( $renewal_order );
246
+	public function delete_renewal_meta($renewal_order) {
247
+		WC_Stripe_Helper::delete_stripe_fee($renewal_order);
248
+		WC_Stripe_Helper::delete_stripe_net($renewal_order);
249 249
 
250 250
 		return $renewal_order;
251 251
 	}
@@ -259,14 +259,14 @@  discard block
 block discarded – undo
259 259
 	 * @param WC_Order $renewal_order The order which recorded the successful payment (to make up for the failed automatic payment).
260 260
 	 * @return void
261 261
 	 */
262
-	public function update_failing_payment_method( $subscription, $renewal_order ) {
263
-		if ( WC_Stripe_Helper::is_pre_30() ) {
264
-			update_post_meta( $subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id );
265
-			update_post_meta( $subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id );
262
+	public function update_failing_payment_method($subscription, $renewal_order) {
263
+		if (WC_Stripe_Helper::is_pre_30()) {
264
+			update_post_meta($subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id);
265
+			update_post_meta($subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id);
266 266
 
267 267
 		} else {
268
-			update_post_meta( $subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta( '_stripe_customer_id', true ) );
269
-			update_post_meta( $subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta( '_stripe_source_id', true ) );
268
+			update_post_meta($subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta('_stripe_customer_id', true));
269
+			update_post_meta($subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta('_stripe_source_id', true));
270 270
 		}
271 271
 	}
272 272
 
@@ -279,21 +279,21 @@  discard block
 block discarded – undo
279 279
 	 * @param WC_Subscription $subscription An instance of a subscription object
280 280
 	 * @return array
281 281
 	 */
282
-	public function add_subscription_payment_meta( $payment_meta, $subscription ) {
283
-		$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
282
+	public function add_subscription_payment_meta($payment_meta, $subscription) {
283
+		$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
284 284
 
285 285
 		// For BW compat will remove in future.
286
-		if ( empty( $source_id ) ) {
287
-			$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
286
+		if (empty($source_id)) {
287
+			$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
288 288
 
289 289
 			// Take this opportunity to update the key name.
290
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->id, '_stripe_source_id', $source_id ) : update_post_meta( $subscription->get_id(), '_stripe_source_id', $source_id );
290
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->id, '_stripe_source_id', $source_id) : update_post_meta($subscription->get_id(), '_stripe_source_id', $source_id);
291 291
 		}
292 292
 
293
-		$payment_meta[ $this->id ] = array(
293
+		$payment_meta[$this->id] = array(
294 294
 			'post_meta' => array(
295 295
 				'_stripe_customer_id' => array(
296
-					'value' => get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true ),
296
+					'value' => get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true),
297 297
 					'label' => 'Stripe Customer ID',
298 298
 				),
299 299
 				'_stripe_source_id' => array(
@@ -314,22 +314,22 @@  discard block
 block discarded – undo
314 314
 	 * @param array $payment_meta associative array of meta data required for automatic payments
315 315
 	 * @return array
316 316
 	 */
317
-	public function validate_subscription_payment_meta( $payment_method_id, $payment_meta ) {
318
-		if ( $this->id === $payment_method_id ) {
317
+	public function validate_subscription_payment_meta($payment_method_id, $payment_meta) {
318
+		if ($this->id === $payment_method_id) {
319 319
 
320
-			if ( ! isset( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) || empty( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) ) {
321
-				throw new Exception( __( 'A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe' ) );
322
-			} elseif ( 0 !== strpos( $payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_' ) ) {
323
-				throw new Exception( __( 'Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe' ) );
320
+			if ( ! isset($payment_meta['post_meta']['_stripe_customer_id']['value']) || empty($payment_meta['post_meta']['_stripe_customer_id']['value'])) {
321
+				throw new Exception(__('A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe'));
322
+			} elseif (0 !== strpos($payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_')) {
323
+				throw new Exception(__('Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe'));
324 324
 			}
325 325
 
326 326
 			if (
327
-				( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
328
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'card_' ) )
329
-				&& ( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
330
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'src_' ) ) ) {
327
+				( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
328
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'card_'))
329
+				&& ( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
330
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'src_')) ) {
331 331
 
332
-				throw new Exception( __( 'Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe' ) );
332
+				throw new Exception(__('Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe'));
333 333
 			}
334 334
 		}
335 335
 	}
@@ -342,67 +342,67 @@  discard block
 block discarded – undo
342 342
 	 * @param WC_Subscription $subscription the subscription details
343 343
 	 * @return string the subscription payment method
344 344
 	 */
345
-	public function maybe_render_subscription_payment_method( $payment_method_to_display, $subscription ) {
345
+	public function maybe_render_subscription_payment_method($payment_method_to_display, $subscription) {
346 346
 		$customer_user = WC_Stripe_Helper::is_pre_30() ? $subscription->customer_user : $subscription->get_customer_id();
347 347
 
348 348
 		// bail for other payment methods
349
-		if ( ( WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method() ) !== $this->id || ! $customer_user ) {
349
+		if ((WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method()) !== $this->id || ! $customer_user) {
350 350
 			return $payment_method_to_display;
351 351
 		}
352 352
 
353
-		$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
353
+		$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
354 354
 
355 355
 		// For BW compat will remove in future.
356
-		if ( empty( $stripe_source_id ) ) {
357
-			$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
356
+		if (empty($stripe_source_id)) {
357
+			$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
358 358
 
359 359
 			// Take this opportunity to update the key name.
360
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->id, '_stripe_source_id', $stripe_source_id ) : update_post_meta( $subscription->get_id(), '_stripe_source_id', $stripe_source_id );
360
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->id, '_stripe_source_id', $stripe_source_id) : update_post_meta($subscription->get_id(), '_stripe_source_id', $stripe_source_id);
361 361
 		}
362 362
 
363 363
 		$stripe_customer    = new WC_Stripe_Customer();
364
-		$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true );
364
+		$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true);
365 365
 
366 366
 		// If we couldn't find a Stripe customer linked to the subscription, fallback to the user meta data.
367
-		if ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) {
367
+		if ( ! $stripe_customer_id || ! is_string($stripe_customer_id)) {
368 368
 			$user_id            = $customer_user;
369
-			$stripe_customer_id = get_user_meta( $user_id, '_stripe_customer_id', true );
370
-			$stripe_source_id   = get_user_meta( $user_id, '_stripe_source_id', true );
369
+			$stripe_customer_id = get_user_meta($user_id, '_stripe_customer_id', true);
370
+			$stripe_source_id   = get_user_meta($user_id, '_stripe_source_id', true);
371 371
 
372 372
 			// For BW compat will remove in future.
373
-			if ( empty( $stripe_source_id ) ) {
374
-				$stripe_source_id = get_user_meta( $user_id, '_stripe_card_id', true );
373
+			if (empty($stripe_source_id)) {
374
+				$stripe_source_id = get_user_meta($user_id, '_stripe_card_id', true);
375 375
 
376 376
 				// Take this opportunity to update the key name.
377
-				update_user_meta( $user_id, '_stripe_source_id', $stripe_source_id );
377
+				update_user_meta($user_id, '_stripe_source_id', $stripe_source_id);
378 378
 			}
379 379
 		}
380 380
 
381 381
 		// If we couldn't find a Stripe customer linked to the account, fallback to the order meta data.
382
-		if ( ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) && false !== $subscription->order ) {
383
-			$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_customer_id', true );
384
-			$stripe_source_id   = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_source_id', true );
382
+		if (( ! $stripe_customer_id || ! is_string($stripe_customer_id)) && false !== $subscription->order) {
383
+			$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_customer_id', true);
384
+			$stripe_source_id   = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_source_id', true);
385 385
 
386 386
 			// For BW compat will remove in future.
387
-			if ( empty( $stripe_source_id ) ) {
388
-				$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_card_id', true );
387
+			if (empty($stripe_source_id)) {
388
+				$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_card_id', true);
389 389
 
390 390
 				// Take this opportunity to update the key name.
391
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->order->id, '_stripe_source_id', $stripe_source_id ) : update_post_meta( $subscription->get_parent_id(), '_stripe_source_id', $stripe_source_id );
391
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->order->id, '_stripe_source_id', $stripe_source_id) : update_post_meta($subscription->get_parent_id(), '_stripe_source_id', $stripe_source_id);
392 392
 			}
393 393
 		}
394 394
 
395
-		$stripe_customer->set_id( $stripe_customer_id );
395
+		$stripe_customer->set_id($stripe_customer_id);
396 396
 		$sources = $stripe_customer->get_sources();
397 397
 
398
-		if ( $sources ) {
399
-			foreach ( $sources as $source ) {
400
-				if ( $source->id === $stripe_source_id ) {
401
-					if ( $source->sepa_debit ) {
398
+		if ($sources) {
399
+			foreach ($sources as $source) {
400
+				if ($source->id === $stripe_source_id) {
401
+					if ($source->sepa_debit) {
402 402
 						/* translators: 1) last 4 digits of SEPA Direct Debit */
403
-						$payment_method_to_display = sprintf( __( 'Via SEPA Direct Debit ending in %1$s', 'woocommerce-gateway-stripe' ), $source->sepa_debit->last4 );
403
+						$payment_method_to_display = sprintf(__('Via SEPA Direct Debit ending in %1$s', 'woocommerce-gateway-stripe'), $source->sepa_debit->last4);
404 404
 					} else {
405
-						$payment_method_to_display = __( 'N/A', 'woocommerce-gateway-stripe' );
405
+						$payment_method_to_display = __('N/A', 'woocommerce-gateway-stripe');
406 406
 					}
407 407
 					break;
408 408
 				}
Please login to merge, or discard this patch.
includes/compat/class-wc-stripe-subs-compat.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 	 * @param float $amount
182 182
 	 * @param mixed $renewal_order
183 183
 	 * @param bool $retry Should we retry the process?
184
-	 * @param object $previous_error
184
+	 * @param boolean $previous_error
185 185
 	 */
186 186
 	public function process_subscription_payment( $amount = 0.0, $renewal_order, $retry = true, $previous_error ) {
187 187
 		try {
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
 
312 312
 	/**
313 313
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
314
-	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
314
+	 * @param integer $renewal_order
315 315
 	 */
316 316
 	public function delete_renewal_meta( $renewal_order ) {
317 317
 		WC_Stripe_Helper::delete_stripe_fee( $renewal_order );
Please login to merge, or discard this patch.
Spacing   +157 added lines, -157 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
 
@@ -15,19 +15,19 @@  discard block
 block discarded – undo
15 15
 	public function __construct() {
16 16
 		parent::__construct();
17 17
 
18
-		if ( class_exists( 'WC_Subscriptions_Order' ) ) {
19
-			add_action( 'woocommerce_scheduled_subscription_payment_' . $this->id, array( $this, 'scheduled_subscription_payment' ), 10, 2 );
20
-			add_action( 'wcs_resubscribe_order_created', array( $this, 'delete_resubscribe_meta' ), 10 );
21
-			add_action( 'wcs_renewal_order_created', array( $this, 'delete_renewal_meta' ), 10 );
22
-			add_action( 'woocommerce_subscription_failing_payment_method_updated_stripe', array( $this, 'update_failing_payment_method' ), 10, 2 );
18
+		if (class_exists('WC_Subscriptions_Order')) {
19
+			add_action('woocommerce_scheduled_subscription_payment_' . $this->id, array($this, 'scheduled_subscription_payment'), 10, 2);
20
+			add_action('wcs_resubscribe_order_created', array($this, 'delete_resubscribe_meta'), 10);
21
+			add_action('wcs_renewal_order_created', array($this, 'delete_renewal_meta'), 10);
22
+			add_action('woocommerce_subscription_failing_payment_method_updated_stripe', array($this, 'update_failing_payment_method'), 10, 2);
23 23
 
24 24
 			// display the credit card used for a subscription in the "My Subscriptions" table
25
-			add_filter( 'woocommerce_my_subscriptions_payment_method', array( $this, 'maybe_render_subscription_payment_method' ), 10, 2 );
25
+			add_filter('woocommerce_my_subscriptions_payment_method', array($this, 'maybe_render_subscription_payment_method'), 10, 2);
26 26
 
27 27
 			// allow store managers to manually set Stripe as the payment method on a subscription
28
-			add_filter( 'woocommerce_subscription_payment_meta', array( $this, 'add_subscription_payment_meta' ), 10, 2 );
29
-			add_filter( 'woocommerce_subscription_validate_payment_meta', array( $this, 'validate_subscription_payment_meta' ), 10, 2 );
30
-			add_filter( 'wc_stripe_display_save_payment_method_checkbox', array( $this, 'maybe_hide_save_checkbox' ) );
28
+			add_filter('woocommerce_subscription_payment_meta', array($this, 'add_subscription_payment_meta'), 10, 2);
29
+			add_filter('woocommerce_subscription_validate_payment_meta', array($this, 'validate_subscription_payment_meta'), 10, 2);
30
+			add_filter('wc_stripe_display_save_payment_method_checkbox', array($this, 'maybe_hide_save_checkbox'));
31 31
 		}
32 32
 	}
33 33
 
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	 * @since 4.0.0
48 48
 	 * @version 4.0.0
49 49
 	 */
50
-	public function maybe_hide_save_checkbox( $display_tokenization ) {
51
-		if ( WC_Subscriptions_Cart::cart_contains_subscription() ) {
50
+	public function maybe_hide_save_checkbox($display_tokenization) {
51
+		if (WC_Subscriptions_Cart::cart_contains_subscription()) {
52 52
 			return false;
53 53
 		}
54 54
 
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 	 * @param  int  $order_id
61 61
 	 * @return boolean
62 62
 	 */
63
-	public function has_subscription( $order_id ) {
64
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
63
+	public function has_subscription($order_id) {
64
+		return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id)));
65 65
 	}
66 66
 
67 67
 	/**
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 	 * @return bool
72 72
 	 */
73 73
 	public function is_subs_change_payment() {
74
-		return ( isset( $_GET['pay_for_order'] ) && isset( $_GET['change_payment_method'] ) );
74
+		return (isset($_GET['pay_for_order']) && isset($_GET['change_payment_method']));
75 75
 	}
76 76
 
77 77
 	/**
@@ -80,24 +80,24 @@  discard block
 block discarded – undo
80 80
 	 * @since 4.0.4
81 81
 	 * @param int $order_id
82 82
 	 */
83
-	public function change_subs_payment_method( $order_id ) {
83
+	public function change_subs_payment_method($order_id) {
84 84
 		try {
85
-			$subscription    = wc_get_order( $order_id );
86
-			$prepared_source = $this->prepare_source( get_current_user_id(), true );
85
+			$subscription    = wc_get_order($order_id);
86
+			$prepared_source = $this->prepare_source(get_current_user_id(), true);
87 87
 			$source_object   = $prepared_source->source_object;
88 88
 
89 89
 			// Check if we don't allow prepaid credit cards.
90
-			if ( ! apply_filters( 'wc_stripe_allow_prepaid_card', true ) && $this->is_prepaid_card( $source_object ) ) {
91
-				$localized_message = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe' );
92
-				throw new WC_Stripe_Exception( print_r( $source_object, true ), $localized_message );
90
+			if ( ! apply_filters('wc_stripe_allow_prepaid_card', true) && $this->is_prepaid_card($source_object)) {
91
+				$localized_message = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe');
92
+				throw new WC_Stripe_Exception(print_r($source_object, true), $localized_message);
93 93
 			}
94 94
 
95
-			if ( empty( $prepared_source->source ) ) {
96
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
97
-				throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
95
+			if (empty($prepared_source->source)) {
96
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
97
+				throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message);
98 98
 			}
99 99
 
100
-			$this->save_source_to_order( $subscription, $prepared_source );
100
+			$this->save_source_to_order($subscription, $prepared_source);
101 101
 
102 102
 			/*
103 103
 			 * Check if card 3DS is required or optional with 3DS setting.
@@ -106,41 +106,41 @@  discard block
 block discarded – undo
106 106
 			 * Note that if we need to save source, the original source must be first
107 107
 			 * attached to a customer in Stripe before it can be charged.
108 108
 			 */
109
-			if ( $this->is_3ds_required( $source_object ) ) {
109
+			if ($this->is_3ds_required($source_object)) {
110 110
 				$order    = $subscription->get_parent();
111
-				$response = $this->create_3ds_source( $order, $source_object, $subscription->get_view_order_url() );
111
+				$response = $this->create_3ds_source($order, $source_object, $subscription->get_view_order_url());
112 112
 
113
-				if ( ! empty( $response->error ) ) {
113
+				if ( ! empty($response->error)) {
114 114
 					$localized_message = $response->error->message;
115 115
 
116
-					$order->add_order_note( $localized_message );
116
+					$order->add_order_note($localized_message);
117 117
 
118
-					throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
118
+					throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
119 119
 				}
120 120
 
121 121
 				// Update order meta with 3DS source.
122
-				if ( WC_Stripe_Helper::is_pre_30() ) {
123
-					update_post_meta( $order_id, '_stripe_source_id', $response->id );
122
+				if (WC_Stripe_Helper::is_pre_30()) {
123
+					update_post_meta($order_id, '_stripe_source_id', $response->id);
124 124
 				} else {
125
-					$subscription->update_meta_data( '_stripe_source_id', $response->id );
125
+					$subscription->update_meta_data('_stripe_source_id', $response->id);
126 126
 					$subscription->save();
127 127
 				}
128 128
 
129
-				WC_Stripe_Logger::log( 'Info: Redirecting to 3DS...' );
129
+				WC_Stripe_Logger::log('Info: Redirecting to 3DS...');
130 130
 
131 131
 				return array(
132 132
 					'result'   => 'success',
133
-					'redirect' => esc_url_raw( $response->redirect->url ),
133
+					'redirect' => esc_url_raw($response->redirect->url),
134 134
 				);
135 135
 			}
136 136
 
137 137
 			return array(
138 138
 				'result'   => 'success',
139
-				'redirect' => $this->get_return_url( $subscription ),
139
+				'redirect' => $this->get_return_url($subscription),
140 140
 			);
141
-		} catch ( WC_Stripe_Exception $e ) {
142
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
143
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
141
+		} catch (WC_Stripe_Exception $e) {
142
+			wc_add_notice($e->getLocalizedMessage(), 'error');
143
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
144 144
 		}
145 145
 	}
146 146
 
@@ -149,16 +149,16 @@  discard block
 block discarded – undo
149 149
 	 * @param  int $order_id
150 150
 	 * @return array
151 151
 	 */
152
-	public function process_payment( $order_id, $retry = true, $force_save_source = false, $previous_error = false ) {
153
-		if ( $this->has_subscription( $order_id ) ) {
154
-			if ( $this->is_subs_change_payment() ) {
155
-				return $this->change_subs_payment_method( $order_id );
152
+	public function process_payment($order_id, $retry = true, $force_save_source = false, $previous_error = false) {
153
+		if ($this->has_subscription($order_id)) {
154
+			if ($this->is_subs_change_payment()) {
155
+				return $this->change_subs_payment_method($order_id);
156 156
 			}
157 157
 
158 158
 			// Regular payment with force customer enabled
159
-			return parent::process_payment( $order_id, $retry, true, $previous_error );
159
+			return parent::process_payment($order_id, $retry, true, $previous_error);
160 160
 		} else {
161
-			return parent::process_payment( $order_id, $retry, $force_save_source, $previous_error );
161
+			return parent::process_payment($order_id, $retry, $force_save_source, $previous_error);
162 162
 		}
163 163
 	}
164 164
 
@@ -168,8 +168,8 @@  discard block
 block discarded – undo
168 168
 	 * @param $amount_to_charge float The amount to charge.
169 169
 	 * @param $renewal_order WC_Order A WC_Order object created to record the renewal payment.
170 170
 	 */
171
-	public function scheduled_subscription_payment( $amount_to_charge, $renewal_order ) {
172
-		$this->process_subscription_payment( $amount_to_charge, $renewal_order, true, false );
171
+	public function scheduled_subscription_payment($amount_to_charge, $renewal_order) {
172
+		$this->process_subscription_payment($amount_to_charge, $renewal_order, true, false);
173 173
 	}
174 174
 
175 175
 	/**
@@ -183,89 +183,89 @@  discard block
 block discarded – undo
183 183
 	 * @param bool $retry Should we retry the process?
184 184
 	 * @param object $previous_error
185 185
 	 */
186
-	public function process_subscription_payment( $amount = 0.0, $renewal_order, $retry = true, $previous_error ) {
186
+	public function process_subscription_payment($amount = 0.0, $renewal_order, $retry = true, $previous_error) {
187 187
 		try {
188
-			if ( $amount * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
188
+			if ($amount * 100 < WC_Stripe_Helper::get_minimum_amount()) {
189 189
 				/* translators: minimum amount */
190
-				return new WP_Error( 'stripe_error', 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 ) ) );
190
+				return new WP_Error('stripe_error', 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)));
191 191
 			}
192 192
 
193 193
 			$order_id = WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id();
194 194
 
195 195
 			// Get source from order
196
-			$prepared_source = $this->prepare_order_source( $renewal_order );
196
+			$prepared_source = $this->prepare_order_source($renewal_order);
197 197
 			$source_object   = $prepared_source->source_object;
198 198
 
199
-			if ( ! $prepared_source->customer ) {
200
-				return new WP_Error( 'stripe_error', __( 'Customer not found', 'woocommerce-gateway-stripe' ) );
199
+			if ( ! $prepared_source->customer) {
200
+				return new WP_Error('stripe_error', __('Customer not found', 'woocommerce-gateway-stripe'));
201 201
 			}
202 202
 
203
-			WC_Stripe_Logger::log( "Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}" );
203
+			WC_Stripe_Logger::log("Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}");
204 204
 
205 205
 			/* If we're doing a retry and source is chargeable, we need to pass
206 206
 			 * a different idempotency key and retry for success.
207 207
 			 */
208
-			if ( is_object( $source_object ) && empty( $source_object->error ) && $this->need_update_idempotency_key( $source_object, $previous_error ) ) {
209
-				add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
208
+			if (is_object($source_object) && empty($source_object->error) && $this->need_update_idempotency_key($source_object, $previous_error)) {
209
+				add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
210 210
 			}
211 211
 
212
-			if ( ( $this->is_no_such_source_error( $previous_error ) || $this->is_no_linked_source_error( $previous_error ) ) && apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
212
+			if (($this->is_no_such_source_error($previous_error) || $this->is_no_linked_source_error($previous_error)) && apply_filters('wc_stripe_use_default_customer_source', true)) {
213 213
 				// Passing empty source will charge customer default.
214 214
 				$prepared_source->source = '';
215 215
 			}
216 216
 
217
-			$request            = $this->generate_payment_request( $renewal_order, $prepared_source );
217
+			$request            = $this->generate_payment_request($renewal_order, $prepared_source);
218 218
 			$request['capture'] = 'true';
219
-			$request['amount']  = WC_Stripe_Helper::get_stripe_amount( $amount, $request['currency'] );
220
-			$response           = WC_Stripe_API::request( $request );
219
+			$request['amount']  = WC_Stripe_Helper::get_stripe_amount($amount, $request['currency']);
220
+			$response           = WC_Stripe_API::request($request);
221 221
 
222
-			if ( ! empty( $response->error ) ) {
222
+			if ( ! empty($response->error)) {
223 223
 				// We want to retry.
224
-				if ( $this->is_retryable_error( $response->error ) ) {
225
-					if ( $retry ) {
224
+				if ($this->is_retryable_error($response->error)) {
225
+					if ($retry) {
226 226
 						// Don't do anymore retries after this.
227
-						if ( 5 <= $this->retry_interval ) {
228
-							return $this->process_subscription_payment( $amount, $renewal_order, false, $response->error );
227
+						if (5 <= $this->retry_interval) {
228
+							return $this->process_subscription_payment($amount, $renewal_order, false, $response->error);
229 229
 						}
230 230
 
231
-						sleep( $this->retry_interval );
231
+						sleep($this->retry_interval);
232 232
 
233 233
 						$this->retry_interval++;
234 234
 
235
-						return $this->process_subscription_payment( $amount, $renewal_order, true, $response->error );
235
+						return $this->process_subscription_payment($amount, $renewal_order, true, $response->error);
236 236
 					} else {
237
-						$localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' );
238
-						$renewal_order->add_order_note( $localized_message );
239
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
237
+						$localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe');
238
+						$renewal_order->add_order_note($localized_message);
239
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
240 240
 					}
241 241
 				}
242 242
 
243 243
 				$localized_messages = WC_Stripe_Helper::get_localized_messages();
244 244
 
245
-				if ( 'card_error' === $response->error->type ) {
246
-					$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
245
+				if ('card_error' === $response->error->type) {
246
+					$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
247 247
 				} else {
248
-					$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
248
+					$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
249 249
 				}
250 250
 
251
-				$renewal_order->add_order_note( $localized_message );
251
+				$renewal_order->add_order_note($localized_message);
252 252
 
253
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
253
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
254 254
 			}
255 255
 
256
-			do_action( 'wc_gateway_stripe_process_payment', $response, $renewal_order );
256
+			do_action('wc_gateway_stripe_process_payment', $response, $renewal_order);
257 257
 
258
-			$this->process_response( $response, $renewal_order );
259
-		} catch ( WC_Stripe_Exception $e ) {
260
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
258
+			$this->process_response($response, $renewal_order);
259
+		} catch (WC_Stripe_Exception $e) {
260
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
261 261
 
262
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $renewal_order );
262
+			do_action('wc_gateway_stripe_process_payment_error', $e, $renewal_order);
263 263
 
264 264
 			/* translators: error message */
265
-			$renewal_order->update_status( 'failed' );
265
+			$renewal_order->update_status('failed');
266 266
 
267
-			if ( $renewal_order->has_status( array( 'pending', 'failed' ) ) ) {
268
-				$this->send_failed_order_email( $order_id );
267
+			if ($renewal_order->has_status(array('pending', 'failed'))) {
268
+				$this->send_failed_order_email($order_id);
269 269
 			}
270 270
 		}
271 271
 	}
@@ -276,24 +276,24 @@  discard block
 block discarded – undo
276 276
 	 * @since 3.1.0
277 277
 	 * @version 4.0.0
278 278
 	 */
279
-	public function save_source_to_order( $order, $source ) {
280
-		parent::save_source_to_order( $order, $source );
279
+	public function save_source_to_order($order, $source) {
280
+		parent::save_source_to_order($order, $source);
281 281
 
282 282
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
283 283
 
284 284
 		// Also store it on the subscriptions being purchased or paid for in the order
285
-		if ( function_exists( 'wcs_order_contains_subscription' ) && wcs_order_contains_subscription( $order_id ) ) {
286
-			$subscriptions = wcs_get_subscriptions_for_order( $order_id );
287
-		} elseif ( function_exists( 'wcs_order_contains_renewal' ) && wcs_order_contains_renewal( $order_id ) ) {
288
-			$subscriptions = wcs_get_subscriptions_for_renewal_order( $order_id );
285
+		if (function_exists('wcs_order_contains_subscription') && wcs_order_contains_subscription($order_id)) {
286
+			$subscriptions = wcs_get_subscriptions_for_order($order_id);
287
+		} elseif (function_exists('wcs_order_contains_renewal') && wcs_order_contains_renewal($order_id)) {
288
+			$subscriptions = wcs_get_subscriptions_for_renewal_order($order_id);
289 289
 		} else {
290 290
 			$subscriptions = array();
291 291
 		}
292 292
 
293
-		foreach ( $subscriptions as $subscription ) {
293
+		foreach ($subscriptions as $subscription) {
294 294
 			$subscription_id = WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id();
295
-			update_post_meta( $subscription_id, '_stripe_customer_id', $source->customer );
296
-			update_post_meta( $subscription_id, '_stripe_source_id', $source->source );
295
+			update_post_meta($subscription_id, '_stripe_customer_id', $source->customer);
296
+			update_post_meta($subscription_id, '_stripe_source_id', $source->source);
297 297
 		}
298 298
 	}
299 299
 
@@ -301,21 +301,21 @@  discard block
 block discarded – undo
301 301
 	 * Don't transfer Stripe customer/token meta to resubscribe orders.
302 302
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
303 303
 	 */
304
-	public function delete_resubscribe_meta( $resubscribe_order ) {
305
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_customer_id' );
306
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_source_id' );
304
+	public function delete_resubscribe_meta($resubscribe_order) {
305
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_customer_id');
306
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_source_id');
307 307
 		// For BW compat will remove in future
308
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_card_id' );
309
-		$this->delete_renewal_meta( $resubscribe_order );
308
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_card_id');
309
+		$this->delete_renewal_meta($resubscribe_order);
310 310
 	}
311 311
 
312 312
 	/**
313 313
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
314 314
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
315 315
 	 */
316
-	public function delete_renewal_meta( $renewal_order ) {
317
-		WC_Stripe_Helper::delete_stripe_fee( $renewal_order );
318
-		WC_Stripe_Helper::delete_stripe_net( $renewal_order );
316
+	public function delete_renewal_meta($renewal_order) {
317
+		WC_Stripe_Helper::delete_stripe_fee($renewal_order);
318
+		WC_Stripe_Helper::delete_stripe_net($renewal_order);
319 319
 
320 320
 		return $renewal_order;
321 321
 	}
@@ -329,14 +329,14 @@  discard block
 block discarded – undo
329 329
 	 * @param WC_Order $renewal_order The order which recorded the successful payment (to make up for the failed automatic payment).
330 330
 	 * @return void
331 331
 	 */
332
-	public function update_failing_payment_method( $subscription, $renewal_order ) {
333
-		if ( WC_Stripe_Helper::is_pre_30() ) {
334
-			update_post_meta( $subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id );
335
-			update_post_meta( $subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id );
332
+	public function update_failing_payment_method($subscription, $renewal_order) {
333
+		if (WC_Stripe_Helper::is_pre_30()) {
334
+			update_post_meta($subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id);
335
+			update_post_meta($subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id);
336 336
 
337 337
 		} else {
338
-			update_post_meta( $subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta( '_stripe_customer_id', true ) );
339
-			update_post_meta( $subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta( '_stripe_source_id', true ) );
338
+			update_post_meta($subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta('_stripe_customer_id', true));
339
+			update_post_meta($subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta('_stripe_source_id', true));
340 340
 		}
341 341
 	}
342 342
 
@@ -349,21 +349,21 @@  discard block
 block discarded – undo
349 349
 	 * @param WC_Subscription $subscription An instance of a subscription object
350 350
 	 * @return array
351 351
 	 */
352
-	public function add_subscription_payment_meta( $payment_meta, $subscription ) {
353
-		$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
352
+	public function add_subscription_payment_meta($payment_meta, $subscription) {
353
+		$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
354 354
 
355 355
 		// For BW compat will remove in future.
356
-		if ( empty( $source_id ) ) {
357
-			$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
356
+		if (empty($source_id)) {
357
+			$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
358 358
 
359 359
 			// Take this opportunity to update the key name.
360
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->id, '_stripe_source_id', $source_id ) : update_post_meta( $subscription->get_id(), '_stripe_source_id', $source_id );
360
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->id, '_stripe_source_id', $source_id) : update_post_meta($subscription->get_id(), '_stripe_source_id', $source_id);
361 361
 		}
362 362
 
363
-		$payment_meta[ $this->id ] = array(
363
+		$payment_meta[$this->id] = array(
364 364
 			'post_meta' => array(
365 365
 				'_stripe_customer_id' => array(
366
-					'value' => get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true ),
366
+					'value' => get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true),
367 367
 					'label' => 'Stripe Customer ID',
368 368
 				),
369 369
 				'_stripe_source_id' => array(
@@ -386,22 +386,22 @@  discard block
 block discarded – undo
386 386
 	 * @param array $payment_meta associative array of meta data required for automatic payments
387 387
 	 * @return array
388 388
 	 */
389
-	public function validate_subscription_payment_meta( $payment_method_id, $payment_meta ) {
390
-		if ( $this->id === $payment_method_id ) {
389
+	public function validate_subscription_payment_meta($payment_method_id, $payment_meta) {
390
+		if ($this->id === $payment_method_id) {
391 391
 
392
-			if ( ! isset( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) || empty( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) ) {
393
-				throw new Exception( __( 'A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe' ) );
394
-			} elseif ( 0 !== strpos( $payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_' ) ) {
395
-				throw new Exception( __( 'Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe' ) );
392
+			if ( ! isset($payment_meta['post_meta']['_stripe_customer_id']['value']) || empty($payment_meta['post_meta']['_stripe_customer_id']['value'])) {
393
+				throw new Exception(__('A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe'));
394
+			} elseif (0 !== strpos($payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_')) {
395
+				throw new Exception(__('Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe'));
396 396
 			}
397 397
 
398 398
 			if (
399
-				( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
400
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'card_' ) )
401
-				&& ( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
402
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'src_' ) ) ) {
399
+				( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
400
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'card_'))
401
+				&& ( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
402
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'src_')) ) {
403 403
 
404
-				throw new Exception( __( 'Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe' ) );
404
+				throw new Exception(__('Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe'));
405 405
 			}
406 406
 		}
407 407
 	}
@@ -414,92 +414,92 @@  discard block
 block discarded – undo
414 414
 	 * @param WC_Subscription $subscription the subscription details
415 415
 	 * @return string the subscription payment method
416 416
 	 */
417
-	public function maybe_render_subscription_payment_method( $payment_method_to_display, $subscription ) {
417
+	public function maybe_render_subscription_payment_method($payment_method_to_display, $subscription) {
418 418
 		$customer_user = WC_Stripe_Helper::is_pre_30() ? $subscription->customer_user : $subscription->get_customer_id();
419 419
 
420 420
 		// bail for other payment methods
421
-		if ( ( WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method() ) !== $this->id || ! $customer_user ) {
421
+		if ((WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method()) !== $this->id || ! $customer_user) {
422 422
 			return $payment_method_to_display;
423 423
 		}
424 424
 
425
-		$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
425
+		$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
426 426
 
427 427
 		// For BW compat will remove in future.
428
-		if ( empty( $stripe_source_id ) ) {
429
-			$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
428
+		if (empty($stripe_source_id)) {
429
+			$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
430 430
 
431 431
 			// Take this opportunity to update the key name.
432
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->id, '_stripe_source_id', $stripe_source_id ) : update_post_meta( $subscription->get_id(), '_stripe_source_id', $stripe_source_id );
432
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->id, '_stripe_source_id', $stripe_source_id) : update_post_meta($subscription->get_id(), '_stripe_source_id', $stripe_source_id);
433 433
 		}
434 434
 
435 435
 		$stripe_customer    = new WC_Stripe_Customer();
436
-		$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true );
436
+		$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true);
437 437
 
438 438
 		// If we couldn't find a Stripe customer linked to the subscription, fallback to the user meta data.
439
-		if ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) {
439
+		if ( ! $stripe_customer_id || ! is_string($stripe_customer_id)) {
440 440
 			$user_id            = $customer_user;
441
-			$stripe_customer_id = get_user_meta( $user_id, '_stripe_customer_id', true );
442
-			$stripe_source_id   = get_user_meta( $user_id, '_stripe_source_id', true );
441
+			$stripe_customer_id = get_user_meta($user_id, '_stripe_customer_id', true);
442
+			$stripe_source_id   = get_user_meta($user_id, '_stripe_source_id', true);
443 443
 
444 444
 			// For BW compat will remove in future.
445
-			if ( empty( $stripe_source_id ) ) {
446
-				$stripe_source_id = get_user_meta( $user_id, '_stripe_card_id', true );
445
+			if (empty($stripe_source_id)) {
446
+				$stripe_source_id = get_user_meta($user_id, '_stripe_card_id', true);
447 447
 
448 448
 				// Take this opportunity to update the key name.
449
-				update_user_meta( $user_id, '_stripe_source_id', $stripe_source_id );
449
+				update_user_meta($user_id, '_stripe_source_id', $stripe_source_id);
450 450
 			}
451 451
 		}
452 452
 
453 453
 		// If we couldn't find a Stripe customer linked to the account, fallback to the order meta data.
454
-		if ( ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) && false !== $subscription->order ) {
455
-			$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_customer_id', true );
456
-			$stripe_source_id   = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_source_id', true );
454
+		if (( ! $stripe_customer_id || ! is_string($stripe_customer_id)) && false !== $subscription->order) {
455
+			$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_customer_id', true);
456
+			$stripe_source_id   = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_source_id', true);
457 457
 
458 458
 			// For BW compat will remove in future.
459
-			if ( empty( $stripe_source_id ) ) {
460
-				$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_card_id', true );
459
+			if (empty($stripe_source_id)) {
460
+				$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_card_id', true);
461 461
 
462 462
 				// Take this opportunity to update the key name.
463
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->order->id, '_stripe_source_id', $stripe_source_id ) : update_post_meta( $subscription->get_parent_id(), '_stripe_source_id', $stripe_source_id );
463
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->order->id, '_stripe_source_id', $stripe_source_id) : update_post_meta($subscription->get_parent_id(), '_stripe_source_id', $stripe_source_id);
464 464
 			}
465 465
 		}
466 466
 
467
-		$stripe_customer->set_id( $stripe_customer_id );
467
+		$stripe_customer->set_id($stripe_customer_id);
468 468
 		$sources = $stripe_customer->get_sources();
469 469
 
470
-		if ( $sources ) {
470
+		if ($sources) {
471 471
 			$card         = false;
472 472
 			$found_source = false;
473
-			foreach ( $sources as $source ) {
474
-				if ( isset( $source->type ) && 'card' === $source->type ) {
473
+			foreach ($sources as $source) {
474
+				if (isset($source->type) && 'card' === $source->type) {
475 475
 					$card = $source->card;
476
-				} elseif ( isset( $source->object ) && 'card' === $source->object ) {
476
+				} elseif (isset($source->object) && 'card' === $source->object) {
477 477
 					$card = $source;
478 478
 				}
479 479
 
480
-				if ( $source->id === $stripe_source_id ) {
480
+				if ($source->id === $stripe_source_id) {
481 481
 					$found_source = true;
482 482
 
483
-					if ( $card ) {
483
+					if ($card) {
484 484
 						/* translators: 1) card brand 2) last 4 digits */
485
-						$payment_method_to_display = sprintf( __( 'Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe' ), ( isset( $card->brand ) ? $card->brand : __( 'N/A', 'woocommerce-gateway-stripe' ) ), $card->last4 );
485
+						$payment_method_to_display = sprintf(__('Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe'), (isset($card->brand) ? $card->brand : __('N/A', 'woocommerce-gateway-stripe')), $card->last4);
486 486
 					} else {
487
-						$payment_method_to_display = __( 'N/A', 'woocommerce-gateway-stripe' );
487
+						$payment_method_to_display = __('N/A', 'woocommerce-gateway-stripe');
488 488
 					}
489 489
 					break;
490 490
 				}
491 491
 			}
492 492
 
493
-			if ( ! $found_source ) {
494
-				if ( 'card' === $sources[0]->type ) {
493
+			if ( ! $found_source) {
494
+				if ('card' === $sources[0]->type) {
495 495
 					$card = $sources[0]->card;
496 496
 				}
497 497
 
498
-				if ( $card ) {
498
+				if ($card) {
499 499
 					/* translators: 1) card brand 2) last 4 digits */
500
-					$payment_method_to_display = sprintf( __( 'Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe' ), ( isset( $card->brand ) ? $card->brand : __( 'N/A', 'woocommerce-gateway-stripe' ) ), $card->last4 );
500
+					$payment_method_to_display = sprintf(__('Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe'), (isset($card->brand) ? $card->brand : __('N/A', 'woocommerce-gateway-stripe')), $card->last4);
501 501
 				} else {
502
-					$payment_method_to_display = __( 'N/A', 'woocommerce-gateway-stripe' );
502
+					$payment_method_to_display = __('N/A', 'woocommerce-gateway-stripe');
503 503
 				}
504 504
 			}
505 505
 		}
Please login to merge, or discard this patch.
uninstall.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  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
 
6 6
 // if uninstall not called from WordPress exit
7
-if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
7
+if ( ! defined('WP_UNINSTALL_PLUGIN')) {
8 8
 	exit;
9 9
 }
10 10
 
@@ -13,30 +13,30 @@  discard block
 block discarded – undo
13 13
  * wp-config.php. This is to prevent data loss when deleting the plugin from the backend
14 14
  * and to ensure only the site owner can perform this action.
15 15
  */
16
-if ( defined( 'WC_REMOVE_ALL_DATA' ) && true === WC_REMOVE_ALL_DATA ) {
16
+if (defined('WC_REMOVE_ALL_DATA') && true === WC_REMOVE_ALL_DATA) {
17 17
 	// Delete options.
18
-	delete_option( 'woocommerce_stripe_settings' );
19
-	delete_option( 'wc_stripe_show_request_api_notice' );
20
-	delete_option( 'wc_stripe_show_apple_pay_notice' );
21
-	delete_option( 'wc_stripe_show_ssl_notice' );
22
-	delete_option( 'wc_stripe_show_keys_notice' );
23
-	delete_option( 'wc_stripe_show_alipay_notice' );
24
-	delete_option( 'wc_stripe_show_bancontact_notice' );
25
-	delete_option( 'wc_stripe_show_bitcoin_notice' );
26
-	delete_option( 'wc_stripe_show_eps_notice' );
27
-	delete_option( 'wc_stripe_show_giropay_notice' );
28
-	delete_option( 'wc_stripe_show_ideal_notice' );
29
-	delete_option( 'wc_stripe_show_multibanco_notice' );
30
-	delete_option( 'wc_stripe_show_p24_notice' );
31
-	delete_option( 'wc_stripe_show_sepa_notice' );
32
-	delete_option( 'wc_stripe_show_sofort_notice' );
33
-	delete_option( 'wc_stripe_version' );
34
-	delete_option( 'woocommerce_stripe_bancontact_settings' );
35
-	delete_option( 'woocommerce_stripe_alipay_settings' );
36
-	delete_option( 'woocommerce_stripe_bitcoin_settings' );
37
-	delete_option( 'woocommerce_stripe_ideal_settings' );
38
-	delete_option( 'woocommerce_stripe_p24_settings' );
39
-	delete_option( 'woocommerce_stripe_giropay_settings' );
40
-	delete_option( 'woocommerce_stripe_sepa_settings' );
41
-	delete_option( 'woocommerce_stripe_sofort_settings' );
18
+	delete_option('woocommerce_stripe_settings');
19
+	delete_option('wc_stripe_show_request_api_notice');
20
+	delete_option('wc_stripe_show_apple_pay_notice');
21
+	delete_option('wc_stripe_show_ssl_notice');
22
+	delete_option('wc_stripe_show_keys_notice');
23
+	delete_option('wc_stripe_show_alipay_notice');
24
+	delete_option('wc_stripe_show_bancontact_notice');
25
+	delete_option('wc_stripe_show_bitcoin_notice');
26
+	delete_option('wc_stripe_show_eps_notice');
27
+	delete_option('wc_stripe_show_giropay_notice');
28
+	delete_option('wc_stripe_show_ideal_notice');
29
+	delete_option('wc_stripe_show_multibanco_notice');
30
+	delete_option('wc_stripe_show_p24_notice');
31
+	delete_option('wc_stripe_show_sepa_notice');
32
+	delete_option('wc_stripe_show_sofort_notice');
33
+	delete_option('wc_stripe_version');
34
+	delete_option('woocommerce_stripe_bancontact_settings');
35
+	delete_option('woocommerce_stripe_alipay_settings');
36
+	delete_option('woocommerce_stripe_bitcoin_settings');
37
+	delete_option('woocommerce_stripe_ideal_settings');
38
+	delete_option('woocommerce_stripe_p24_settings');
39
+	delete_option('woocommerce_stripe_giropay_settings');
40
+	delete_option('woocommerce_stripe_sepa_settings');
41
+	delete_option('woocommerce_stripe_sofort_settings');
42 42
 }
Please login to merge, or discard this patch.
woocommerce-gateway-stripe.php 1 patch
Spacing   +92 added lines, -92 removed lines patch added patch discarded remove patch
@@ -15,20 +15,20 @@  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
 
22
-if ( ! class_exists( 'WC_Stripe' ) ) :
22
+if ( ! class_exists('WC_Stripe')) :
23 23
 	/**
24 24
 	 * Required minimums and constants
25 25
 	 */
26
-	define( 'WC_STRIPE_VERSION', '4.1.0-beta-1' );
27
-	define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' );
28
-	define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' );
29
-	define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
30
-	define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
31
-	define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
26
+	define('WC_STRIPE_VERSION', '4.1.0-beta-1');
27
+	define('WC_STRIPE_MIN_PHP_VER', '5.6.0');
28
+	define('WC_STRIPE_MIN_WC_VER', '2.6.0');
29
+	define('WC_STRIPE_MAIN_FILE', __FILE__);
30
+	define('WC_STRIPE_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
31
+	define('WC_STRIPE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
32 32
 
33 33
 	class WC_Stripe {
34 34
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 		 * @return Singleton The *Singleton* instance.
49 49
 		 */
50 50
 		public static function get_instance() {
51
-			if ( null === self::$instance ) {
51
+			if (null === self::$instance) {
52 52
 				self::$instance = new self();
53 53
 			}
54 54
 			return self::$instance;
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 		 * *Singleton* via the `new` operator from outside of this class.
76 76
 		 */
77 77
 		private function __construct() {
78
-			add_action( 'admin_init', array( $this, 'install' ) );
79
-			add_action( 'plugins_loaded', array( $this, 'init' ) );
78
+			add_action('admin_init', array($this, 'install'));
79
+			add_action('plugins_loaded', array($this, 'init'));
80 80
 		}
81 81
 
82 82
 		/**
@@ -86,51 +86,51 @@  discard block
 block discarded – undo
86 86
 		 * @version 4.0.0
87 87
 		 */
88 88
 		public function init() {
89
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' );
90
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' );
91
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' );
92
-			include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' );
89
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-exception.php');
90
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-logger.php');
91
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-helper.php');
92
+			include_once(dirname(__FILE__) . '/includes/class-wc-stripe-api.php');
93 93
 
94 94
 			// Don't hook anything else in the plugin if we're in an incompatible environment.
95
-			if ( $this->get_environment_warning() && is_plugin_active( plugin_basename( __FILE__ ) ) ) {
95
+			if ($this->get_environment_warning() && is_plugin_active(plugin_basename(__FILE__))) {
96 96
 				return;
97 97
 			}
98 98
 
99
-			load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
100
-
101
-			require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' );
102
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php' );
103
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php' );
104
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php' );
105
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php' );
106
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php' );
107
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php' );
108
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php' );
109
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php' );
110
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php' );
111
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php' );
112
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php' );
113
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php' );
114
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php' );
115
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php' );
116
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php' );
117
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php' );
118
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php' );
119
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php' );
120
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php' );
121
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php' );
122
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php' );
123
-
124
-			if ( is_admin() ) {
125
-				require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php' );
99
+			load_plugin_textdomain('woocommerce-gateway-stripe', false, plugin_basename(dirname(__FILE__)) . '/languages');
100
+
101
+			require_once(dirname(__FILE__) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php');
102
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-webhook-handler.php');
103
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-sepa-payment-token.php');
104
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-apple-pay-registration.php');
105
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-pre-orders-compat.php');
106
+			require_once(dirname(__FILE__) . '/includes/class-wc-gateway-stripe.php');
107
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php');
108
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php');
109
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php');
110
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php');
111
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php');
112
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php');
113
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php');
114
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php');
115
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php');
116
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php');
117
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-stripe-payment-request.php');
118
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-subs-compat.php');
119
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php');
120
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-order-handler.php');
121
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-payment-tokens.php');
122
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-customer.php');
123
+
124
+			if (is_admin()) {
125
+				require_once(dirname(__FILE__) . '/includes/admin/class-wc-stripe-admin-notices.php');
126 126
 			}
127 127
 
128 128
 			// REMOVE IN THE FUTURE.
129
-			require_once( dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php' );
129
+			require_once(dirname(__FILE__) . '/includes/deprecated/class-wc-stripe-apple-pay.php');
130 130
 
131
-			add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) );
132
-			add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) );
133
-			add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) );
131
+			add_filter('woocommerce_payment_gateways', array($this, 'add_gateways'));
132
+			add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links'));
133
+			add_filter('woocommerce_get_sections_checkout', array($this, 'filter_gateway_order_admin'));
134 134
 		}
135 135
 
136 136
 		/**
@@ -142,26 +142,26 @@  discard block
 block discarded – undo
142 142
 		 * @version 4.0.0
143 143
 		 */
144 144
 		public function get_environment_warning() {
145
-			if ( version_compare( phpversion(), WC_STRIPE_MIN_PHP_VER, '<' ) ) {
145
+			if (version_compare(phpversion(), WC_STRIPE_MIN_PHP_VER, '<')) {
146 146
 				/* translators: 1) int version 2) int version */
147
-				$message = __( 'WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
147
+				$message = __('WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe');
148 148
 
149
-				return sprintf( $message, WC_STRIPE_MIN_PHP_VER, phpversion() );
149
+				return sprintf($message, WC_STRIPE_MIN_PHP_VER, phpversion());
150 150
 			}
151 151
 
152
-			if ( ! defined( 'WC_VERSION' ) ) {
153
-				return __( 'WooCommerce Stripe requires WooCommerce to be activated to work.', 'woocommerce-gateway-stripe' );
152
+			if ( ! defined('WC_VERSION')) {
153
+				return __('WooCommerce Stripe requires WooCommerce to be activated to work.', 'woocommerce-gateway-stripe');
154 154
 			}
155 155
 
156
-			if ( version_compare( WC_VERSION, WC_STRIPE_MIN_WC_VER, '<' ) ) {
156
+			if (version_compare(WC_VERSION, WC_STRIPE_MIN_WC_VER, '<')) {
157 157
 				/* translators: 1) int version 2) int version */
158
-				$message = __( 'WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
158
+				$message = __('WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe');
159 159
 
160
-				return sprintf( $message, WC_STRIPE_MIN_WC_VER, WC_VERSION );
160
+				return sprintf($message, WC_STRIPE_MIN_WC_VER, WC_VERSION);
161 161
 			}
162 162
 
163
-			if ( ! function_exists( 'curl_init' ) ) {
164
-				return __( 'WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe' );
163
+			if ( ! function_exists('curl_init')) {
164
+				return __('WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe');
165 165
 			}
166 166
 
167 167
 			return false;
@@ -174,8 +174,8 @@  discard block
 block discarded – undo
174 174
 		 * @version 4.0.0
175 175
 		 */
176 176
 		public function update_plugin_version() {
177
-			delete_option( 'wc_stripe_version' );
178
-			update_option( 'wc_stripe_version', WC_STRIPE_VERSION );
177
+			delete_option('wc_stripe_version');
178
+			update_option('wc_stripe_version', WC_STRIPE_VERSION);
179 179
 		}
180 180
 
181 181
 		/**
@@ -185,11 +185,11 @@  discard block
 block discarded – undo
185 185
 		 * @version 3.1.0
186 186
 		 */
187 187
 		public function install() {
188
-			if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) {
189
-				do_action( 'woocommerce_stripe_updated' );
188
+			if ( ! defined('IFRAME_REQUEST') && (WC_STRIPE_VERSION !== get_option('wc_stripe_version'))) {
189
+				do_action('woocommerce_stripe_updated');
190 190
 
191
-				if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) {
192
-					define( 'WC_STRIPE_INSTALLING', true );
191
+				if ( ! defined('WC_STRIPE_INSTALLING')) {
192
+					define('WC_STRIPE_INSTALLING', true);
193 193
 				}
194 194
 
195 195
 				$this->update_plugin_version();
@@ -202,13 +202,13 @@  discard block
 block discarded – undo
202 202
 		 * @since 1.0.0
203 203
 		 * @version 4.0.0
204 204
 		 */
205
-		public function plugin_action_links( $links ) {
205
+		public function plugin_action_links($links) {
206 206
 			$plugin_links = array(
207
-				'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>',
208
-				'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>',
209
-				'<a href="https://woocommerce.com/contact-us/">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>',
207
+				'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__('Settings', 'woocommerce-gateway-stripe') . '</a>',
208
+				'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__('Docs', 'woocommerce-gateway-stripe') . '</a>',
209
+				'<a href="https://woocommerce.com/contact-us/">' . esc_html__('Support', 'woocommerce-gateway-stripe') . '</a>',
210 210
 			);
211
-			return array_merge( $plugin_links, $links );
211
+			return array_merge($plugin_links, $links);
212 212
 		}
213 213
 
214 214
 		/**
@@ -217,8 +217,8 @@  discard block
 block discarded – undo
217 217
 		 * @since 1.0.0
218 218
 		 * @version 4.0.0
219 219
 		 */
220
-		public function add_gateways( $methods ) {
221
-			if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) {
220
+		public function add_gateways($methods) {
221
+			if (class_exists('WC_Subscriptions_Order') && function_exists('wcs_create_renewal_order')) {
222 222
 				$methods[] = 'WC_Stripe_Subs_Compat';
223 223
 				$methods[] = 'WC_Stripe_Sepa_Subs_Compat';
224 224
 			} else {
@@ -245,30 +245,30 @@  discard block
 block discarded – undo
245 245
 		 * @since 4.0.0
246 246
 		 * @version 4.0.0
247 247
 		 */
248
-		public function filter_gateway_order_admin( $sections ) {
249
-			unset( $sections['stripe'] );
250
-			unset( $sections['stripe_bancontact'] );
251
-			unset( $sections['stripe_sofort'] );
252
-			unset( $sections['stripe_giropay'] );
253
-			unset( $sections['stripe_eps'] );
254
-			unset( $sections['stripe_ideal'] );
255
-			unset( $sections['stripe_p24'] );
256
-			unset( $sections['stripe_alipay'] );
257
-			unset( $sections['stripe_sepa'] );
258
-			unset( $sections['stripe_bitcoin'] );
259
-			unset( $sections['stripe_multibanco'] );
248
+		public function filter_gateway_order_admin($sections) {
249
+			unset($sections['stripe']);
250
+			unset($sections['stripe_bancontact']);
251
+			unset($sections['stripe_sofort']);
252
+			unset($sections['stripe_giropay']);
253
+			unset($sections['stripe_eps']);
254
+			unset($sections['stripe_ideal']);
255
+			unset($sections['stripe_p24']);
256
+			unset($sections['stripe_alipay']);
257
+			unset($sections['stripe_sepa']);
258
+			unset($sections['stripe_bitcoin']);
259
+			unset($sections['stripe_multibanco']);
260 260
 
261 261
 			$sections['stripe']            = 'Stripe';
262
-			$sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' );
263
-			$sections['stripe_sofort']     = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' );
264
-			$sections['stripe_giropay']    = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' );
265
-			$sections['stripe_eps']        = __( 'Stripe EPS', 'woocommerce-gateway-stripe' );
266
-			$sections['stripe_ideal']      = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' );
267
-			$sections['stripe_p24']        = __( 'Stripe P24', 'woocommerce-gateway-stripe' );
268
-			$sections['stripe_alipay']     = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' );
269
-			$sections['stripe_sepa']       = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' );
270
-			$sections['stripe_bitcoin']    = __( 'Stripe Bitcoin', 'woocommerce-gateway-stripe' );
271
-			$sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' );
262
+			$sections['stripe_bancontact'] = __('Stripe Bancontact', 'woocommerce-gateway-stripe');
263
+			$sections['stripe_sofort']     = __('Stripe SOFORT', 'woocommerce-gateway-stripe');
264
+			$sections['stripe_giropay']    = __('Stripe Giropay', 'woocommerce-gateway-stripe');
265
+			$sections['stripe_eps']        = __('Stripe EPS', 'woocommerce-gateway-stripe');
266
+			$sections['stripe_ideal']      = __('Stripe iDeal', 'woocommerce-gateway-stripe');
267
+			$sections['stripe_p24']        = __('Stripe P24', 'woocommerce-gateway-stripe');
268
+			$sections['stripe_alipay']     = __('Stripe Alipay', 'woocommerce-gateway-stripe');
269
+			$sections['stripe_sepa']       = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe');
270
+			$sections['stripe_bitcoin']    = __('Stripe Bitcoin', 'woocommerce-gateway-stripe');
271
+			$sections['stripe_multibanco'] = __('Stripe Multibanco', 'woocommerce-gateway-stripe');
272 272
 
273 273
 			return $sections;
274 274
 		}
Please login to merge, or discard this patch.
includes/deprecated/class-wc-stripe-apple-pay.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
6 6
 /**
7 7
  * DEPRECATED DO NOT USE!!
8 8
  */
9
-if ( ! class_exists( 'WC_Stripe_Apple_Pay' ) ) {
9
+if ( ! class_exists('WC_Stripe_Apple_Pay')) {
10 10
 	class WC_Stripe_Apple_Pay {
11 11
 		/**
12 12
 		 * This Instance.
@@ -20,15 +20,15 @@  discard block
 block discarded – undo
20 20
 		}
21 21
 
22 22
 		public static function instance() {
23
-			WC_Stripe_Logger::log( 'DEPRECATED! WC_Stripe_Apple_Pay class has been hard deprecated. Please remove any code that references this class or instance. This class will be removed by version 4.2' );
23
+			WC_Stripe_Logger::log('DEPRECATED! WC_Stripe_Apple_Pay class has been hard deprecated. Please remove any code that references this class or instance. This class will be removed by version 4.2');
24 24
 			return self::$_this;
25 25
 		}
26 26
 
27
-		public function __get( $var ) {
27
+		public function __get($var) {
28 28
 			return null;
29 29
 		}
30 30
 
31
-		public function __call( $name, $arguments ) {
31
+		public function __call($name, $arguments) {
32 32
 			return null;
33 33
 		}
34 34
 	}
Please login to merge, or discard this patch.
includes/compat/class-wc-stripe-pre-orders-compat.php 1 patch
Spacing   +37 added lines, -37 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
 
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 	public $saved_cards;
12 12
 
13 13
 	public function __construct() {
14
-		$this->saved_cards = WC_Stripe_Helper::get_settings( 'stripe', 'saved_cards' );
14
+		$this->saved_cards = WC_Stripe_Helper::get_settings('stripe', 'saved_cards');
15 15
 	}
16 16
 
17 17
 	/**
@@ -19,68 +19,68 @@  discard block
 block discarded – undo
19 19
 	 * @param  int  $order_id
20 20
 	 * @return boolean
21 21
 	 */
22
-	public function is_pre_order( $order_id ) {
23
-		return WC_Pre_Orders_Order::order_contains_pre_order( $order_id );
22
+	public function is_pre_order($order_id) {
23
+		return WC_Pre_Orders_Order::order_contains_pre_order($order_id);
24 24
 	}
25 25
 
26 26
 	/**
27 27
 	 * Remove order meta
28 28
 	 * @param object $order
29 29
 	 */
30
-	public function remove_order_source_before_retry( $order ) {
30
+	public function remove_order_source_before_retry($order) {
31 31
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
32
-		delete_post_meta( $order_id, '_stripe_source_id' );
32
+		delete_post_meta($order_id, '_stripe_source_id');
33 33
 		// For BW compat will remove in the future.
34
-		delete_post_meta( $order_id, '_stripe_card_id' );
34
+		delete_post_meta($order_id, '_stripe_card_id');
35 35
 	}
36 36
 
37 37
 	/**
38 38
 	 * Remove order meta
39 39
 	 * @param  object $order
40 40
 	 */
41
-	public function remove_order_customer_before_retry( $order ) {
41
+	public function remove_order_customer_before_retry($order) {
42 42
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
43
-		delete_post_meta( $order_id, '_stripe_customer_id' );
43
+		delete_post_meta($order_id, '_stripe_customer_id');
44 44
 	}
45 45
 
46 46
 	/**
47 47
 	 * Process the pre-order when pay upon release is used.
48 48
 	 * @param int $order_id
49 49
 	 */
50
-	public function process_pre_order( $order_id ) {
50
+	public function process_pre_order($order_id) {
51 51
 		try {
52
-			$order = wc_get_order( $order_id );
52
+			$order = wc_get_order($order_id);
53 53
 
54 54
 			// This will throw exception if not valid.
55
-			$this->validate_minimum_order_amount( $order );
55
+			$this->validate_minimum_order_amount($order);
56 56
 
57
-			$prepared_source = $this->prepare_source( get_current_user_id(), true );
57
+			$prepared_source = $this->prepare_source(get_current_user_id(), true);
58 58
 
59 59
 			// We need a source on file to continue.
60
-			if ( empty( $prepared_source->customer ) || empty( $prepared_source->source ) ) {
61
-				throw new WC_Stripe_Exception( __( 'Unable to store payment details. Please try again.', 'woocommerce-gateway-stripe' ) );
60
+			if (empty($prepared_source->customer) || empty($prepared_source->source)) {
61
+				throw new WC_Stripe_Exception(__('Unable to store payment details. Please try again.', 'woocommerce-gateway-stripe'));
62 62
 			}
63 63
 
64
-			$this->save_source_to_order( $order, $prepared_source );
64
+			$this->save_source_to_order($order, $prepared_source);
65 65
 
66 66
 			// Remove cart
67 67
 			WC()->cart->empty_cart();
68 68
 
69 69
 			// Is pre ordered!
70
-			WC_Pre_Orders_Order::mark_order_as_pre_ordered( $order );
70
+			WC_Pre_Orders_Order::mark_order_as_pre_ordered($order);
71 71
 
72 72
 			// Return thank you page redirect
73 73
 			return array(
74 74
 				'result'   => 'success',
75
-				'redirect' => $this->get_return_url( $order ),
75
+				'redirect' => $this->get_return_url($order),
76 76
 			);
77
-		} catch ( WC_Stripe_Exception $e ) {
78
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
79
-			WC_Stripe_Logger::log( 'Pre Orders Error: ' . $e->getMessage() );
77
+		} catch (WC_Stripe_Exception $e) {
78
+			wc_add_notice($e->getLocalizedMessage(), 'error');
79
+			WC_Stripe_Logger::log('Pre Orders Error: ' . $e->getMessage());
80 80
 
81 81
 			return array(
82 82
 				'result'   => 'success',
83
-				'redirect' => $order->get_checkout_payment_url( true ),
83
+				'redirect' => $order->get_checkout_payment_url(true),
84 84
 			);
85 85
 		}
86 86
 	}
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	 * @param WC_Order $order
91 91
 	 * @return void
92 92
 	 */
93
-	public function process_pre_order_release_payment( $order ) {
93
+	public function process_pre_order_release_payment($order) {
94 94
 		try {
95 95
 			// Define some callbacks if the first attempt fails.
96 96
 			$retry_callbacks = array(
@@ -98,33 +98,33 @@  discard block
 block discarded – undo
98 98
 				'remove_order_customer_before_retry',
99 99
 			);
100 100
 
101
-			while ( 1 ) {
102
-				$source   = $this->prepare_order_source( $order );
103
-				$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source ) );
101
+			while (1) {
102
+				$source   = $this->prepare_order_source($order);
103
+				$response = WC_Stripe_API::request($this->generate_payment_request($order, $source));
104 104
 
105
-				if ( ! empty( $response->error ) ) {
106
-					if ( 0 === sizeof( $retry_callbacks ) ) {
107
-						throw new Exception( $response->error->message );
105
+				if ( ! empty($response->error)) {
106
+					if (0 === sizeof($retry_callbacks)) {
107
+						throw new Exception($response->error->message);
108 108
 					} else {
109
-						$retry_callback = array_shift( $retry_callbacks );
110
-						call_user_func( array( $this, $retry_callback ), $order );
109
+						$retry_callback = array_shift($retry_callbacks);
110
+						call_user_func(array($this, $retry_callback), $order);
111 111
 					}
112 112
 				} else {
113 113
 					// Successful
114
-					$this->process_response( $response, $order );
114
+					$this->process_response($response, $order);
115 115
 					break;
116 116
 				}
117 117
 			}
118
-		} catch ( Exception $e ) {
118
+		} catch (Exception $e) {
119 119
 			/* translators: error message */
120
-			$order_note = sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $e->getMessage() );
120
+			$order_note = sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $e->getMessage());
121 121
 
122 122
 			// Mark order as failed if not already set,
123 123
 			// otherwise, make sure we add the order note so we can detect when someone fails to check out multiple times
124
-			if ( ! $order->has_status( 'failed' ) ) {
125
-				$order->update_status( 'failed', $order_note );
124
+			if ( ! $order->has_status('failed')) {
125
+				$order->update_status('failed', $order_note);
126 126
 			} else {
127
-				$order->add_order_note( $order_note );
127
+				$order->add_order_note($order_note);
128 128
 			}
129 129
 		}
130 130
 	}
Please login to merge, or discard this patch.
includes/class-wc-stripe-webhook-handler.php 1 patch
Spacing   +180 added lines, -180 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
 
@@ -32,9 +32,9 @@  discard block
 block discarded – undo
32 32
 	 */
33 33
 	public function __construct() {
34 34
 		$this->retry_interval = 2;
35
-		$stripe_settings      = get_option( 'woocommerce_stripe_settings', array() );
36
-		$this->testmode       = ( ! empty( $stripe_settings['testmode'] ) && 'yes' === $stripe_settings['testmode'] ) ? true : false;
37
-		add_action( 'woocommerce_api_wc_stripe', array( $this, 'check_for_webhook' ) );
35
+		$stripe_settings      = get_option('woocommerce_stripe_settings', array());
36
+		$this->testmode       = ( ! empty($stripe_settings['testmode']) && 'yes' === $stripe_settings['testmode']) ? true : false;
37
+		add_action('woocommerce_api_wc_stripe', array($this, 'check_for_webhook'));
38 38
 	}
39 39
 
40 40
 	/**
@@ -44,24 +44,24 @@  discard block
 block discarded – undo
44 44
 	 * @version 4.0.0
45 45
 	 */
46 46
 	public function check_for_webhook() {
47
-		if ( ( 'POST' !== $_SERVER['REQUEST_METHOD'] )
48
-			|| ! isset( $_GET['wc-api'] )
49
-			|| ( 'wc_stripe' !== $_GET['wc-api'] )
47
+		if (('POST' !== $_SERVER['REQUEST_METHOD'])
48
+			|| ! isset($_GET['wc-api'])
49
+			|| ('wc_stripe' !== $_GET['wc-api'])
50 50
 		) {
51 51
 			return;
52 52
 		}
53 53
 
54
-		$request_body    = file_get_contents( 'php://input' );
55
-		$request_headers = array_change_key_case( $this->get_request_headers(), CASE_UPPER );
54
+		$request_body    = file_get_contents('php://input');
55
+		$request_headers = array_change_key_case($this->get_request_headers(), CASE_UPPER);
56 56
 
57 57
 		// Validate it to make sure it is legit.
58
-		if ( $this->is_valid_request( $request_headers, $request_body ) ) {
59
-			$this->process_webhook( $request_body );
60
-			status_header( 200 );
58
+		if ($this->is_valid_request($request_headers, $request_body)) {
59
+			$this->process_webhook($request_body);
60
+			status_header(200);
61 61
 			exit;
62 62
 		} else {
63
-			WC_Stripe_Logger::log( 'Incoming webhook failed validation: ' . print_r( $request_body, true ) );
64
-			status_header( 400 );
63
+			WC_Stripe_Logger::log('Incoming webhook failed validation: ' . print_r($request_body, true));
64
+			status_header(400);
65 65
 			exit;
66 66
 		}
67 67
 	}
@@ -76,12 +76,12 @@  discard block
 block discarded – undo
76 76
 	 * @param string $request_body The request body from Stripe.
77 77
 	 * @return bool
78 78
 	 */
79
-	public function is_valid_request( $request_headers = null, $request_body = null ) {
80
-		if ( null === $request_headers || null === $request_body ) {
79
+	public function is_valid_request($request_headers = null, $request_body = null) {
80
+		if (null === $request_headers || null === $request_body) {
81 81
 			return false;
82 82
 		}
83 83
 
84
-		if ( ! empty( $request_headers['USER-AGENT'] ) && ! preg_match( '/Stripe/', $request_headers['USER-AGENT'] ) ) {
84
+		if ( ! empty($request_headers['USER-AGENT']) && ! preg_match('/Stripe/', $request_headers['USER-AGENT'])) {
85 85
 			return false;
86 86
 		}
87 87
 
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
 	 * @version 4.0.0
98 98
 	 */
99 99
 	public function get_request_headers() {
100
-		if ( ! function_exists( 'getallheaders' ) ) {
100
+		if ( ! function_exists('getallheaders')) {
101 101
 			$headers = [];
102
-			foreach ( $_SERVER as $name => $value ) {
103
-				if ( 'HTTP_' === substr( $name, 0, 5 ) ) {
104
-					$headers[ str_replace( ' ', '-', ucwords( strtolower( str_replace( '_', ' ', substr( $name, 5 ) ) ) ) ) ] = $value;
102
+			foreach ($_SERVER as $name => $value) {
103
+				if ('HTTP_' === substr($name, 0, 5)) {
104
+					$headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;
105 105
 				}
106 106
 			}
107 107
 
@@ -120,30 +120,30 @@  discard block
 block discarded – undo
120 120
 	 * @param object $notification
121 121
 	 * @param bool $retry
122 122
 	 */
123
-	public function process_webhook_payment( $notification, $retry = true ) {
123
+	public function process_webhook_payment($notification, $retry = true) {
124 124
 		// The following 2 payment methods are synchronous so does not need to be handle via webhook.
125
-		if ( 'card' === $notification->data->object->type || 'sepa_debit' === $notification->data->object->type ) {
125
+		if ('card' === $notification->data->object->type || 'sepa_debit' === $notification->data->object->type) {
126 126
 			return;
127 127
 		}
128 128
 
129
-		$order = WC_Stripe_Helper::get_order_by_source_id( $notification->data->object->id );
129
+		$order = WC_Stripe_Helper::get_order_by_source_id($notification->data->object->id);
130 130
 
131
-		if ( ! $order ) {
132
-			WC_Stripe_Logger::log( 'Could not find order via source ID: ' . $notification->data->object->id );
131
+		if ( ! $order) {
132
+			WC_Stripe_Logger::log('Could not find order via source ID: ' . $notification->data->object->id);
133 133
 			return;
134 134
 		}
135 135
 
136 136
 		$order_id  = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
137 137
 		$source_id = $notification->data->object->id;
138 138
 
139
-		$is_pending_receiver = ( 'receiver' === $notification->data->object->flow );
139
+		$is_pending_receiver = ('receiver' === $notification->data->object->flow);
140 140
 
141 141
 		try {
142
-			if ( 'processing' === $order->get_status() || 'completed' === $order->get_status() ) {
142
+			if ('processing' === $order->get_status() || 'completed' === $order->get_status()) {
143 143
 				return;
144 144
 			}
145 145
 
146
-			if ( 'on-hold' === $order->get_status() && ! $is_pending_receiver ) {
146
+			if ('on-hold' === $order->get_status() && ! $is_pending_receiver) {
147 147
 				return;
148 148
 			}
149 149
 
@@ -151,94 +151,94 @@  discard block
 block discarded – undo
151 151
 			$response = null;
152 152
 
153 153
 			// This will throw exception if not valid.
154
-			$this->validate_minimum_order_amount( $order );
154
+			$this->validate_minimum_order_amount($order);
155 155
 
156
-			WC_Stripe_Logger::log( "Info: (Webhook) Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
156
+			WC_Stripe_Logger::log("Info: (Webhook) Begin processing payment for order $order_id for the amount of {$order->get_total()}");
157 157
 
158 158
 			// Prep source object.
159 159
 			$source_object           = new stdClass();
160 160
 			$source_object->token_id = '';
161
-			$source_object->customer = $this->get_stripe_customer_id( $order );
161
+			$source_object->customer = $this->get_stripe_customer_id($order);
162 162
 			$source_object->source   = $source_id;
163 163
 
164 164
 			// Make the request.
165
-			$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source_object ), 'charges', 'POST', true );
165
+			$response = WC_Stripe_API::request($this->generate_payment_request($order, $source_object), 'charges', 'POST', true);
166 166
 			$headers  = $response['headers'];
167 167
 			$response = $response['body'];
168 168
 
169
-			if ( ! empty( $response->error ) ) {
169
+			if ( ! empty($response->error)) {
170 170
 				// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
171
-				if ( $this->is_no_such_customer_error( $response->error ) ) {
172
-					if ( WC_Stripe_Helper::is_pre_30() ) {
173
-						delete_user_meta( $order->customer_user, '_stripe_customer_id' );
174
-						delete_post_meta( $order_id, '_stripe_customer_id' );
171
+				if ($this->is_no_such_customer_error($response->error)) {
172
+					if (WC_Stripe_Helper::is_pre_30()) {
173
+						delete_user_meta($order->customer_user, '_stripe_customer_id');
174
+						delete_post_meta($order_id, '_stripe_customer_id');
175 175
 					} else {
176
-						delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
177
-						$order->delete_meta_data( '_stripe_customer_id' );
176
+						delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
177
+						$order->delete_meta_data('_stripe_customer_id');
178 178
 						$order->save();
179 179
 					}
180 180
 				}
181 181
 
182
-				if ( $this->is_no_such_token_error( $response->error ) && $prepared_source->token_id ) {
182
+				if ($this->is_no_such_token_error($response->error) && $prepared_source->token_id) {
183 183
 					// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
184
-					$wc_token = WC_Payment_Tokens::get( $prepared_source->token_id );
184
+					$wc_token = WC_Payment_Tokens::get($prepared_source->token_id);
185 185
 					$wc_token->delete();
186
-					$localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
187
-					$order->add_order_note( $localized_message );
188
-					throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
186
+					$localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
187
+					$order->add_order_note($localized_message);
188
+					throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
189 189
 				}
190 190
 
191 191
 				// We want to retry.
192
-				if ( $this->is_retryable_error( $response->error ) ) {
193
-					if ( $retry ) {
192
+				if ($this->is_retryable_error($response->error)) {
193
+					if ($retry) {
194 194
 						// Don't do anymore retries after this.
195
-						if ( 5 <= $this->retry_interval ) {
195
+						if (5 <= $this->retry_interval) {
196 196
 
197
-							return $this->process_webhook_payment( $notification, false );
197
+							return $this->process_webhook_payment($notification, false);
198 198
 						}
199 199
 
200
-						sleep( $this->retry_interval );
200
+						sleep($this->retry_interval);
201 201
 
202 202
 						$this->retry_interval++;
203
-						return $this->process_webhook_payment( $notification, true );
203
+						return $this->process_webhook_payment($notification, true);
204 204
 					} else {
205
-						$localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' );
206
-						$order->add_order_note( $localized_message );
207
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
205
+						$localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe');
206
+						$order->add_order_note($localized_message);
207
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
208 208
 					}
209 209
 				}
210 210
 
211 211
 				$localized_messages = WC_Stripe_Helper::get_localized_messages();
212 212
 
213
-				if ( 'card_error' === $response->error->type ) {
214
-					$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
213
+				if ('card_error' === $response->error->type) {
214
+					$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
215 215
 				} else {
216
-					$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
216
+					$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
217 217
 				}
218 218
 
219
-				$order->add_order_note( $localized_message );
219
+				$order->add_order_note($localized_message);
220 220
 
221
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
221
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
222 222
 			}
223 223
 
224 224
 			// To prevent double processing the order on WC side.
225
-			if ( ! $this->is_original_request( $headers ) ) {
225
+			if ( ! $this->is_original_request($headers)) {
226 226
 				return;
227 227
 			}
228 228
 
229
-			do_action( 'wc_gateway_stripe_process_webhook_payment', $response, $order );
229
+			do_action('wc_gateway_stripe_process_webhook_payment', $response, $order);
230 230
 
231
-			$this->process_response( $response, $order );
231
+			$this->process_response($response, $order);
232 232
 
233
-		} catch ( WC_Stripe_Exception $e ) {
234
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
233
+		} catch (WC_Stripe_Exception $e) {
234
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
235 235
 
236
-			do_action( 'wc_gateway_stripe_process_webhook_payment_error', $e, $order );
236
+			do_action('wc_gateway_stripe_process_webhook_payment_error', $e, $order);
237 237
 
238
-			$statuses = array( 'pending', 'failed' );
238
+			$statuses = array('pending', 'failed');
239 239
 
240
-			if ( $order->has_status( $statuses ) ) {
241
-				$this->send_failed_order_email( $order_id );
240
+			if ($order->has_status($statuses)) {
241
+				$this->send_failed_order_email($order_id);
242 242
 			}
243 243
 		}
244 244
 	}
@@ -251,21 +251,21 @@  discard block
 block discarded – undo
251 251
 	 * @since 4.0.0
252 252
 	 * @param object $notification
253 253
 	 */
254
-	public function process_webhook_dispute( $notification ) {
255
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->charge );
254
+	public function process_webhook_dispute($notification) {
255
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->charge);
256 256
 
257
-		if ( ! $order ) {
258
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->charge );
257
+		if ( ! $order) {
258
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->charge);
259 259
 			return;
260 260
 		}
261 261
 
262 262
 		/* translators: 1) The URL to the order. */
263
-		$order->update_status( 'on-hold', sprintf( __( 'A dispute was created for this order. Response is needed. Please go to your <a href="%s" title="Stripe Dashboard" target="_blank">Stripe Dashboard</a> to review this dispute.', 'woocommerce-gateway-stripe' ), $this->get_transaction_url( $order ) ) );
263
+		$order->update_status('on-hold', sprintf(__('A dispute was created for this order. Response is needed. Please go to your <a href="%s" title="Stripe Dashboard" target="_blank">Stripe Dashboard</a> to review this dispute.', 'woocommerce-gateway-stripe'), $this->get_transaction_url($order)));
264 264
 
265
-		do_action( 'wc_gateway_stripe_process_webhook_payment_error', $order, $notification );
265
+		do_action('wc_gateway_stripe_process_webhook_payment_error', $order, $notification);
266 266
 
267 267
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
268
-		$this->send_failed_order_email( $order_id );
268
+		$this->send_failed_order_email($order_id);
269 269
 	}
270 270
 
271 271
 	/**
@@ -276,41 +276,41 @@  discard block
 block discarded – undo
276 276
 	 * @version 4.0.0
277 277
 	 * @param object $notification
278 278
 	 */
279
-	public function process_webhook_capture( $notification ) {
280
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
279
+	public function process_webhook_capture($notification) {
280
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
281 281
 
282
-		if ( ! $order ) {
283
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
282
+		if ( ! $order) {
283
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
284 284
 			return;
285 285
 		}
286 286
 
287 287
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
288 288
 
289
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
290
-			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id();
291
-			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true );
289
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
290
+			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id();
291
+			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true);
292 292
 
293
-			if ( $charge && 'no' === $captured ) {
294
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', 'yes' ) : $order->update_meta_data( '_stripe_charge_captured', 'yes' );
293
+			if ($charge && 'no' === $captured) {
294
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', 'yes') : $order->update_meta_data('_stripe_charge_captured', 'yes');
295 295
 
296 296
 				// Store other data such as fees
297
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $notification->data->object->id ) : $order->set_transaction_id( $notification->data->object->id );
297
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $notification->data->object->id) : $order->set_transaction_id($notification->data->object->id);
298 298
 
299
-				if ( isset( $notification->data->object->balance_transaction ) ) {
300
-					$this->update_fees( $order, $notification->data->object->balance_transaction );
299
+				if (isset($notification->data->object->balance_transaction)) {
300
+					$this->update_fees($order, $notification->data->object->balance_transaction);
301 301
 				}
302 302
 
303
-				if ( is_callable( array( $order, 'save' ) ) ) {
303
+				if (is_callable(array($order, 'save'))) {
304 304
 					$order->save();
305 305
 				}
306 306
 
307 307
 				/* translators: transaction id */
308
-				$order->update_status( $order->needs_processing() ? 'processing' : 'completed', sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
308
+				$order->update_status($order->needs_processing() ? 'processing' : 'completed', sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $notification->data->object->id));
309 309
 
310 310
 				// Check and see if capture is partial.
311
-				if ( $this->is_partial_capture( $notification ) ) {
312
-					$order->set_total( $this->get_partial_amount_to_charge( $notification ) );
313
-					$order->add_order_note( __( 'This charge was partially captured via Stripe Dashboard', 'woocommerce-gateway-stripe' ) );
311
+				if ($this->is_partial_capture($notification)) {
312
+					$order->set_total($this->get_partial_amount_to_charge($notification));
313
+					$order->add_order_note(__('This charge was partially captured via Stripe Dashboard', 'woocommerce-gateway-stripe'));
314 314
 					$order->save();
315 315
 				}
316 316
 			}
@@ -325,38 +325,38 @@  discard block
 block discarded – undo
325 325
 	 * @version 4.0.0
326 326
 	 * @param object $notification
327 327
 	 */
328
-	public function process_webhook_charge_succeeded( $notification ) {
328
+	public function process_webhook_charge_succeeded($notification) {
329 329
 		// The following payment methods are synchronous so does not need to be handle via webhook.
330
-		if ( ( isset( $notification->data->object->source->type ) && 'card' === $notification->data->object->source->type ) || ( isset( $notification->data->object->source->type ) && 'three_d_secure' === $notification->data->object->source->type ) ) {
330
+		if ((isset($notification->data->object->source->type) && 'card' === $notification->data->object->source->type) || (isset($notification->data->object->source->type) && 'three_d_secure' === $notification->data->object->source->type)) {
331 331
 			return;
332 332
 		}
333 333
 
334
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
334
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
335 335
 
336
-		if ( ! $order ) {
337
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
336
+		if ( ! $order) {
337
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
338 338
 			return;
339 339
 		}
340 340
 
341 341
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
342 342
 
343
-		if ( 'on-hold' !== $order->get_status() ) {
343
+		if ('on-hold' !== $order->get_status()) {
344 344
 			return;
345 345
 		}
346 346
 
347 347
 		// Store other data such as fees
348
-		WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $notification->data->object->id ) : $order->set_transaction_id( $notification->data->object->id );
348
+		WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $notification->data->object->id) : $order->set_transaction_id($notification->data->object->id);
349 349
 
350
-		if ( isset( $notification->data->object->balance_transaction ) ) {
351
-			$this->update_fees( $order, $notification->data->object->balance_transaction );
350
+		if (isset($notification->data->object->balance_transaction)) {
351
+			$this->update_fees($order, $notification->data->object->balance_transaction);
352 352
 		}
353 353
 
354
-		if ( is_callable( array( $order, 'save' ) ) ) {
354
+		if (is_callable(array($order, 'save'))) {
355 355
 			$order->save();
356 356
 		}
357 357
 
358 358
 		/* translators: transaction id */
359
-		$order->update_status( $order->needs_processing() ? 'processing' : 'completed', sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
359
+		$order->update_status($order->needs_processing() ? 'processing' : 'completed', sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $notification->data->object->id));
360 360
 	}
361 361
 
362 362
 	/**
@@ -367,23 +367,23 @@  discard block
 block discarded – undo
367 367
 	 * @version 4.0.0
368 368
 	 * @param object $notification
369 369
 	 */
370
-	public function process_webhook_charge_failed( $notification ) {
371
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
370
+	public function process_webhook_charge_failed($notification) {
371
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
372 372
 
373
-		if ( ! $order ) {
374
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
373
+		if ( ! $order) {
374
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
375 375
 			return;
376 376
 		}
377 377
 
378 378
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
379 379
 
380
-		if ( 'on-hold' !== $order->get_status() ) {
380
+		if ('on-hold' !== $order->get_status()) {
381 381
 			return;
382 382
 		}
383 383
 
384
-		$order->update_status( 'failed', __( 'This payment failed to clear.', 'woocommerce-gateway-stripe' ) );
384
+		$order->update_status('failed', __('This payment failed to clear.', 'woocommerce-gateway-stripe'));
385 385
 
386
-		do_action( 'wc_gateway_stripe_process_webhook_payment_error', $order, $notification );
386
+		do_action('wc_gateway_stripe_process_webhook_payment_error', $order, $notification);
387 387
 	}
388 388
 
389 389
 	/**
@@ -394,23 +394,23 @@  discard block
 block discarded – undo
394 394
 	 * @version 4.0.0
395 395
 	 * @param object $notification
396 396
 	 */
397
-	public function process_webhook_source_canceled( $notification ) {
398
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
397
+	public function process_webhook_source_canceled($notification) {
398
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
399 399
 
400
-		if ( ! $order ) {
401
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
400
+		if ( ! $order) {
401
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
402 402
 			return;
403 403
 		}
404 404
 
405 405
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
406 406
 
407
-		if ( 'on-hold' !== $order->get_status() || 'cancelled' !== $order->get_status() ) {
407
+		if ('on-hold' !== $order->get_status() || 'cancelled' !== $order->get_status()) {
408 408
 			return;
409 409
 		}
410 410
 
411
-		$order->update_status( 'cancelled', __( 'This payment has cancelled.', 'woocommerce-gateway-stripe' ) );
411
+		$order->update_status('cancelled', __('This payment has cancelled.', 'woocommerce-gateway-stripe'));
412 412
 
413
-		do_action( 'wc_gateway_stripe_process_webhook_payment_error', $order, $notification );
413
+		do_action('wc_gateway_stripe_process_webhook_payment_error', $order, $notification);
414 414
 	}
415 415
 
416 416
 	/**
@@ -420,57 +420,57 @@  discard block
 block discarded – undo
420 420
 	 * @version 4.0.0
421 421
 	 * @param object $notification
422 422
 	 */
423
-	public function process_webhook_refund( $notification ) {
424
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
423
+	public function process_webhook_refund($notification) {
424
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
425 425
 
426
-		if ( ! $order ) {
427
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
426
+		if ( ! $order) {
427
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
428 428
 			return;
429 429
 		}
430 430
 
431 431
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
432 432
 
433
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
434
-			$charge    = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id();
435
-			$captured  = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true );
436
-			$refund_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_refund_id', true ) : $order->get_meta( '_stripe_refund_id', true );
433
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
434
+			$charge    = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id();
435
+			$captured  = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true);
436
+			$refund_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_refund_id', true) : $order->get_meta('_stripe_refund_id', true);
437 437
 
438 438
 			// If the refund ID matches, don't continue to prevent double refunding.
439
-			if ( $notification->data->object->refunds->data[0]->id === $refund_id ) {
439
+			if ($notification->data->object->refunds->data[0]->id === $refund_id) {
440 440
 				return;
441 441
 			}
442 442
 
443 443
 			// Only refund captured charge.
444
-			if ( $charge ) {
445
-				$reason = ( isset( $captured ) && 'yes' === $captured ) ? __( 'Refunded via Stripe Dashboard', 'woocommerce-gateway-stripe' ) : __( 'Pre-Authorization Released via Stripe Dashboard', 'woocommerce-gateway-stripe' );
444
+			if ($charge) {
445
+				$reason = (isset($captured) && 'yes' === $captured) ? __('Refunded via Stripe Dashboard', 'woocommerce-gateway-stripe') : __('Pre-Authorization Released via Stripe Dashboard', 'woocommerce-gateway-stripe');
446 446
 
447 447
 				// Create the refund.
448
-				$refund = wc_create_refund( array(
448
+				$refund = wc_create_refund(array(
449 449
 					'order_id' => $order_id,
450
-					'amount'   => $this->get_refund_amount( $notification ),
450
+					'amount'   => $this->get_refund_amount($notification),
451 451
 					'reason'   => $reason,
452
-				) );
452
+				));
453 453
 
454
-				if ( is_wp_error( $refund ) ) {
455
-					WC_Stripe_Logger::log( $refund->get_error_message() );
454
+				if (is_wp_error($refund)) {
455
+					WC_Stripe_Logger::log($refund->get_error_message());
456 456
 				}
457 457
 
458
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_refund_id', $notification->data->object->refunds->data[0]->id ) : $order->update_meta_data( '_stripe_refund_id', $notification->data->object->refunds->data[0]->id );
458
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_refund_id', $notification->data->object->refunds->data[0]->id) : $order->update_meta_data('_stripe_refund_id', $notification->data->object->refunds->data[0]->id);
459 459
 
460
-				$amount = wc_price( $notification->data->object->refunds->data[0]->amount / 100 );
460
+				$amount = wc_price($notification->data->object->refunds->data[0]->amount / 100);
461 461
 
462
-				if ( in_array( strtolower( $order->get_currency() ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
463
-					$amount = wc_price( $notification->data->object->refunds->data[0]->amount );
462
+				if (in_array(strtolower($order->get_currency()), WC_Stripe_Helper::no_decimal_currencies())) {
463
+					$amount = wc_price($notification->data->object->refunds->data[0]->amount);
464 464
 				}
465 465
 
466
-				if ( isset( $notification->data->object->refunds->data[0]->balance_transaction ) ) {
467
-					$this->update_fees( $order, $notification->data->object->refunds->data[0]->balance_transaction );
466
+				if (isset($notification->data->object->refunds->data[0]->balance_transaction)) {
467
+					$this->update_fees($order, $notification->data->object->refunds->data[0]->balance_transaction);
468 468
 				}
469 469
 
470 470
 				/* translators: 1) dollar amount 2) transaction id 3) refund message */
471
-				$refund_message = ( isset( $captured ) && 'yes' === $captured ) ? sprintf( __( 'Refunded %1$s - Refund ID: %2$s - %3$s', 'woocommerce-gateway-stripe' ), $amount, $notification->data->object->refunds->data[0]->id, $reason ) : __( 'Pre-Authorization Released via Stripe Dashboard', 'woocommerce-gateway-stripe' );
471
+				$refund_message = (isset($captured) && 'yes' === $captured) ? sprintf(__('Refunded %1$s - Refund ID: %2$s - %3$s', 'woocommerce-gateway-stripe'), $amount, $notification->data->object->refunds->data[0]->id, $reason) : __('Pre-Authorization Released via Stripe Dashboard', 'woocommerce-gateway-stripe');
472 472
 
473
-				$order->add_order_note( $refund_message );
473
+				$order->add_order_note($refund_message);
474 474
 			}
475 475
 		}
476 476
 	}
@@ -481,21 +481,21 @@  discard block
 block discarded – undo
481 481
 	 * @since 4.0.6
482 482
 	 * @param object $notification
483 483
 	 */
484
-	public function process_review_opened( $notification ) {
485
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->charge );
484
+	public function process_review_opened($notification) {
485
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->charge);
486 486
 
487
-		if ( ! $order ) {
488
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->charge );
487
+		if ( ! $order) {
488
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->charge);
489 489
 			return;
490 490
 		}
491 491
 
492 492
 		/* translators: 1) The URL to the order. 2) The reason type. */
493
-		$message = sprintf( __( 'A review has been opened for this order. Action is needed. Please go to your <a href="%1$s" title="Stripe Dashboard" target="_blank">Stripe Dashboard</a> to review the issue. Reason: (%2$s)', 'woocommerce-gateway-stripe' ), $this->get_transaction_url( $order ), $notification->data->object->reason );
493
+		$message = sprintf(__('A review has been opened for this order. Action is needed. Please go to your <a href="%1$s" title="Stripe Dashboard" target="_blank">Stripe Dashboard</a> to review the issue. Reason: (%2$s)', 'woocommerce-gateway-stripe'), $this->get_transaction_url($order), $notification->data->object->reason);
494 494
 
495
-		if ( apply_filters( 'wc_stripe_webhook_review_change_order_status', true, $order, $notification ) ) {
496
-			$order->update_status( 'on-hold', $message );
495
+		if (apply_filters('wc_stripe_webhook_review_change_order_status', true, $order, $notification)) {
496
+			$order->update_status('on-hold', $message);
497 497
 		} else {
498
-			$order->add_order_note( $message );
498
+			$order->add_order_note($message);
499 499
 		}
500 500
 	}
501 501
 
@@ -505,25 +505,25 @@  discard block
 block discarded – undo
505 505
 	 * @since 4.0.6
506 506
 	 * @param object $notification
507 507
 	 */
508
-	public function process_review_closed( $notification ) {
509
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->charge );
508
+	public function process_review_closed($notification) {
509
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->charge);
510 510
 
511
-		if ( ! $order ) {
512
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->charge );
511
+		if ( ! $order) {
512
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->charge);
513 513
 			return;
514 514
 		}
515 515
 
516 516
 		/* translators: 1) The reason type. */
517
-		$message = sprintf( __( 'The opened review for this order is now closed. Reason: (%s)', 'woocommerce-gateway-stripe' ), $notification->data->object->reason );
517
+		$message = sprintf(__('The opened review for this order is now closed. Reason: (%s)', 'woocommerce-gateway-stripe'), $notification->data->object->reason);
518 518
 
519
-		if ( 'on-hold' === $order->get_status() ) {
520
-			if ( apply_filters( 'wc_stripe_webhook_review_change_order_status', true, $order, $notification ) ) {
521
-				$order->update_status( 'processing', $message );
519
+		if ('on-hold' === $order->get_status()) {
520
+			if (apply_filters('wc_stripe_webhook_review_change_order_status', true, $order, $notification)) {
521
+				$order->update_status('processing', $message);
522 522
 			} else {
523
-				$order->add_order_note( $message );
523
+				$order->add_order_note($message);
524 524
 			}
525 525
 		} else {
526
-			$order->add_order_note( $message );
526
+			$order->add_order_note($message);
527 527
 		}
528 528
 	}
529 529
 
@@ -534,7 +534,7 @@  discard block
 block discarded – undo
534 534
 	 * @version 4.0.0
535 535
 	 * @param object $notification
536 536
 	 */
537
-	public function is_partial_capture( $notification ) {
537
+	public function is_partial_capture($notification) {
538 538
 		return 0 < $notification->data->object->amount_refunded;
539 539
 	}
540 540
 
@@ -545,11 +545,11 @@  discard block
 block discarded – undo
545 545
 	 * @version 4.0.0
546 546
 	 * @param object $notification
547 547
 	 */
548
-	public function get_refund_amount( $notification ) {
549
-		if ( $this->is_partial_capture( $notification ) ) {
548
+	public function get_refund_amount($notification) {
549
+		if ($this->is_partial_capture($notification)) {
550 550
 			$amount = $notification->data->object->refunds->data[0]->amount / 100;
551 551
 
552
-			if ( in_array( strtolower( $notification->data->object->currency ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
552
+			if (in_array(strtolower($notification->data->object->currency), WC_Stripe_Helper::no_decimal_currencies())) {
553 553
 				$amount = $notification->data->object->refunds->data[0]->amount;
554 554
 			}
555 555
 
@@ -566,12 +566,12 @@  discard block
 block discarded – undo
566 566
 	 * @version 4.0.0
567 567
 	 * @param object $notification
568 568
 	 */
569
-	public function get_partial_amount_to_charge( $notification ) {
570
-		if ( $this->is_partial_capture( $notification ) ) {
571
-			$amount = ( $notification->data->object->amount - $notification->data->object->amount_refunded ) / 100;
569
+	public function get_partial_amount_to_charge($notification) {
570
+		if ($this->is_partial_capture($notification)) {
571
+			$amount = ($notification->data->object->amount - $notification->data->object->amount_refunded) / 100;
572 572
 
573
-			if ( in_array( strtolower( $notification->data->object->currency ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
574
-				$amount = ( $notification->data->object->amount - $notification->data->object->amount_refunded );
573
+			if (in_array(strtolower($notification->data->object->currency), WC_Stripe_Helper::no_decimal_currencies())) {
574
+				$amount = ($notification->data->object->amount - $notification->data->object->amount_refunded);
575 575
 			}
576 576
 
577 577
 			return $amount;
@@ -587,44 +587,44 @@  discard block
 block discarded – undo
587 587
 	 * @version 4.0.0
588 588
 	 * @param string $request_body
589 589
 	 */
590
-	public function process_webhook( $request_body ) {
591
-		$notification = json_decode( $request_body );
590
+	public function process_webhook($request_body) {
591
+		$notification = json_decode($request_body);
592 592
 
593
-		switch ( $notification->type ) {
593
+		switch ($notification->type) {
594 594
 			case 'source.chargeable':
595
-				$this->process_webhook_payment( $notification );
595
+				$this->process_webhook_payment($notification);
596 596
 				break;
597 597
 
598 598
 			case 'source.canceled':
599
-				$this->process_webhook_source_canceled( $notification );
599
+				$this->process_webhook_source_canceled($notification);
600 600
 				break;
601 601
 
602 602
 			case 'charge.succeeded':
603
-				$this->process_webhook_charge_succeeded( $notification );
603
+				$this->process_webhook_charge_succeeded($notification);
604 604
 				break;
605 605
 
606 606
 			case 'charge.failed':
607
-				$this->process_webhook_charge_failed( $notification );
607
+				$this->process_webhook_charge_failed($notification);
608 608
 				break;
609 609
 
610 610
 			case 'charge.captured':
611
-				$this->process_webhook_capture( $notification );
611
+				$this->process_webhook_capture($notification);
612 612
 				break;
613 613
 
614 614
 			case 'charge.dispute.created':
615
-				$this->process_webhook_dispute( $notification );
615
+				$this->process_webhook_dispute($notification);
616 616
 				break;
617 617
 
618 618
 			case 'charge.refunded':
619
-				$this->process_webhook_refund( $notification );
619
+				$this->process_webhook_refund($notification);
620 620
 				break;
621 621
 
622 622
 			case 'review.opened':
623
-				$this->process_review_opened( $notification );
623
+				$this->process_review_opened($notification);
624 624
 				break;
625 625
 
626 626
 			case 'review.closed':
627
-				$this->process_review_closed( $notification );
627
+				$this->process_review_closed($notification);
628 628
 				break;
629 629
 
630 630
 		}
Please login to merge, or discard this patch.