Completed
Push — master ( 9371f2...b7f8be )
by Roy
02:37
created
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   +138 added lines, -138 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,25 +125,25 @@  discard block
 block discarded – undo
125 125
 	 * @since 4.0.4
126 126
 	 * @param int $order_id
127 127
 	 */
128
-	public function change_subs_payment_method( $order_id ) {
128
+	public function change_subs_payment_method($order_id) {
129 129
 		try {
130
-			$subscription    = wc_get_order( $order_id );
131
-			$prepared_source = $this->prepare_source( get_current_user_id(), true );
130
+			$subscription    = wc_get_order($order_id);
131
+			$prepared_source = $this->prepare_source(get_current_user_id(), true);
132 132
 
133
-			if ( empty( $prepared_source->source ) ) {
134
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
135
-				throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
133
+			if (empty($prepared_source->source)) {
134
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
135
+				throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message);
136 136
 			}
137 137
 
138
-			$this->save_source_to_order( $subscription, $prepared_source );
138
+			$this->save_source_to_order($subscription, $prepared_source);
139 139
 
140 140
 			return array(
141 141
 				'result'   => 'success',
142
-				'redirect' => $this->get_return_url( $subscription ),
142
+				'redirect' => $this->get_return_url($subscription),
143 143
 			);
144
-		} catch ( WC_Stripe_Exception $e ) {
145
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
146
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
144
+		} catch (WC_Stripe_Exception $e) {
145
+			wc_add_notice($e->getLocalizedMessage(), 'error');
146
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
147 147
 		}
148 148
 	}
149 149
 
@@ -153,8 +153,8 @@  discard block
 block discarded – undo
153 153
 	 * @param $amount_to_charge float The amount to charge.
154 154
 	 * @param $renewal_order WC_Order A WC_Order object created to record the renewal payment.
155 155
 	 */
156
-	public function scheduled_subscription_payment( $amount_to_charge, $renewal_order ) {
157
-		$this->process_subscription_payment( $amount_to_charge, $renewal_order, true, false );
156
+	public function scheduled_subscription_payment($amount_to_charge, $renewal_order) {
157
+		$this->process_subscription_payment($amount_to_charge, $renewal_order, true, false);
158 158
 	}
159 159
 
160 160
 	/**
@@ -168,89 +168,89 @@  discard block
 block discarded – undo
168 168
 	 * @param bool $retry Should we retry the process?
169 169
 	 * @param object $previous_error
170 170
 	 */
171
-	public function process_subscription_payment( $amount = 0.0, $renewal_order, $retry = true, $previous_error ) {
171
+	public function process_subscription_payment($amount = 0.0, $renewal_order, $retry = true, $previous_error) {
172 172
 		try {
173
-			if ( $amount * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
173
+			if ($amount * 100 < WC_Stripe_Helper::get_minimum_amount()) {
174 174
 				/* translators: minimum amount */
175
-				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 ) ) );
175
+				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)));
176 176
 			}
177 177
 
178 178
 			$order_id = WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id();
179 179
 
180 180
 			// Get source from order
181
-			$prepared_source = $this->prepare_order_source( $renewal_order );
181
+			$prepared_source = $this->prepare_order_source($renewal_order);
182 182
 			$source_object   = $prepared_source->source_object;
183 183
 
184
-			if ( ! $prepared_source->customer ) {
185
-				return new WP_Error( 'stripe_error', __( 'Customer not found', 'woocommerce-gateway-stripe' ) );
184
+			if ( ! $prepared_source->customer) {
185
+				return new WP_Error('stripe_error', __('Customer not found', 'woocommerce-gateway-stripe'));
186 186
 			}
187 187
 
188
-			WC_Stripe_Logger::log( "Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}" );
188
+			WC_Stripe_Logger::log("Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}");
189 189
 
190 190
 			/* If we're doing a retry and source is chargeable, we need to pass
191 191
 			 * a different idempotency key and retry for success.
192 192
 			 */
193
-			if ( is_object( $source_object ) && empty( $source_object->error ) && $this->need_update_idempotency_key( $source_object, $previous_error ) ) {
194
-				add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
193
+			if (is_object($source_object) && empty($source_object->error) && $this->need_update_idempotency_key($source_object, $previous_error)) {
194
+				add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
195 195
 			}
196 196
 
197
-			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 ) ) {
197
+			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)) {
198 198
 				// Passing empty source will charge customer default.
199 199
 				$prepared_source->source = '';
200 200
 			}
201 201
 
202
-			$request            = $this->generate_payment_request( $renewal_order, $prepared_source );
202
+			$request            = $this->generate_payment_request($renewal_order, $prepared_source);
203 203
 			$request['capture'] = 'true';
204
-			$request['amount']  = WC_Stripe_Helper::get_stripe_amount( $amount, $request['currency'] );
205
-			$response           = WC_Stripe_API::request( $request );
204
+			$request['amount']  = WC_Stripe_Helper::get_stripe_amount($amount, $request['currency']);
205
+			$response           = WC_Stripe_API::request($request);
206 206
 
207
-			if ( ! empty( $response->error ) ) {
207
+			if ( ! empty($response->error)) {
208 208
 				// We want to retry.
209
-				if ( $this->is_retryable_error( $response->error ) ) {
210
-					if ( $retry ) {
209
+				if ($this->is_retryable_error($response->error)) {
210
+					if ($retry) {
211 211
 						// Don't do anymore retries after this.
212
-						if ( 5 <= $this->retry_interval ) {
213
-							return $this->process_subscription_payment( $amount, $renewal_order, false, $response->error );
212
+						if (5 <= $this->retry_interval) {
213
+							return $this->process_subscription_payment($amount, $renewal_order, false, $response->error);
214 214
 						}
215 215
 
216
-						sleep( $this->retry_interval );
216
+						sleep($this->retry_interval);
217 217
 
218 218
 						$this->retry_interval++;
219 219
 
220
-						return $this->process_subscription_payment( $amount, $renewal_order, true, $response->error );
220
+						return $this->process_subscription_payment($amount, $renewal_order, true, $response->error);
221 221
 					} else {
222
-						$localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' );
223
-						$renewal_order->add_order_note( $localized_message );
224
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
222
+						$localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe');
223
+						$renewal_order->add_order_note($localized_message);
224
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
225 225
 					}
226 226
 				}
227 227
 
228 228
 				$localized_messages = WC_Stripe_Helper::get_localized_messages();
229 229
 
230
-				if ( 'card_error' === $response->error->type ) {
231
-					$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
230
+				if ('card_error' === $response->error->type) {
231
+					$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
232 232
 				} else {
233
-					$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
233
+					$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
234 234
 				}
235 235
 
236
-				$renewal_order->add_order_note( $localized_message );
236
+				$renewal_order->add_order_note($localized_message);
237 237
 
238
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
238
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
239 239
 			}
240 240
 
241
-			do_action( 'wc_gateway_stripe_process_payment', $response, $renewal_order );
241
+			do_action('wc_gateway_stripe_process_payment', $response, $renewal_order);
242 242
 
243
-			$this->process_response( $response, $renewal_order );
244
-		} catch ( WC_Stripe_Exception $e ) {
245
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
243
+			$this->process_response($response, $renewal_order);
244
+		} catch (WC_Stripe_Exception $e) {
245
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
246 246
 
247
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $renewal_order );
247
+			do_action('wc_gateway_stripe_process_payment_error', $e, $renewal_order);
248 248
 
249 249
 			/* translators: error message */
250
-			$renewal_order->update_status( 'failed' );
250
+			$renewal_order->update_status('failed');
251 251
 
252
-			if ( $renewal_order->has_status( array( 'pending', 'failed' ) ) ) {
253
-				$this->send_failed_order_email( $order_id );
252
+			if ($renewal_order->has_status(array('pending', 'failed'))) {
253
+				$this->send_failed_order_email($order_id);
254 254
 			}
255 255
 		}
256 256
 	}
@@ -259,21 +259,21 @@  discard block
 block discarded – undo
259 259
 	 * Don't transfer Stripe customer/token meta to resubscribe orders.
260 260
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
261 261
 	 */
262
-	public function delete_resubscribe_meta( $resubscribe_order ) {
263
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_customer_id' );
264
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_source_id' );
262
+	public function delete_resubscribe_meta($resubscribe_order) {
263
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_customer_id');
264
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_source_id');
265 265
 		// For BW compat will remove in future
266
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_card_id' );
267
-		$this->delete_renewal_meta( $resubscribe_order );
266
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_card_id');
267
+		$this->delete_renewal_meta($resubscribe_order);
268 268
 	}
269 269
 
270 270
 	/**
271 271
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
272 272
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
273 273
 	 */
274
-	public function delete_renewal_meta( $renewal_order ) {
275
-		WC_Stripe_Helper::delete_stripe_fee( $renewal_order );
276
-		WC_Stripe_Helper::delete_stripe_net( $renewal_order );
274
+	public function delete_renewal_meta($renewal_order) {
275
+		WC_Stripe_Helper::delete_stripe_fee($renewal_order);
276
+		WC_Stripe_Helper::delete_stripe_net($renewal_order);
277 277
 
278 278
 		return $renewal_order;
279 279
 	}
@@ -287,14 +287,14 @@  discard block
 block discarded – undo
287 287
 	 * @param WC_Order $renewal_order The order which recorded the successful payment (to make up for the failed automatic payment).
288 288
 	 * @return void
289 289
 	 */
290
-	public function update_failing_payment_method( $subscription, $renewal_order ) {
291
-		if ( WC_Stripe_Helper::is_pre_30() ) {
292
-			update_post_meta( $subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id );
293
-			update_post_meta( $subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id );
290
+	public function update_failing_payment_method($subscription, $renewal_order) {
291
+		if (WC_Stripe_Helper::is_pre_30()) {
292
+			update_post_meta($subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id);
293
+			update_post_meta($subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id);
294 294
 
295 295
 		} else {
296
-			update_post_meta( $subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta( '_stripe_customer_id', true ) );
297
-			update_post_meta( $subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta( '_stripe_source_id', true ) );
296
+			update_post_meta($subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta('_stripe_customer_id', true));
297
+			update_post_meta($subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta('_stripe_source_id', true));
298 298
 		}
299 299
 	}
300 300
 
@@ -307,21 +307,21 @@  discard block
 block discarded – undo
307 307
 	 * @param WC_Subscription $subscription An instance of a subscription object
308 308
 	 * @return array
309 309
 	 */
310
-	public function add_subscription_payment_meta( $payment_meta, $subscription ) {
311
-		$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
310
+	public function add_subscription_payment_meta($payment_meta, $subscription) {
311
+		$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
312 312
 
313 313
 		// For BW compat will remove in future.
314
-		if ( empty( $source_id ) ) {
315
-			$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
314
+		if (empty($source_id)) {
315
+			$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
316 316
 
317 317
 			// Take this opportunity to update the key name.
318
-			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 );
318
+			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);
319 319
 		}
320 320
 
321
-		$payment_meta[ $this->id ] = array(
321
+		$payment_meta[$this->id] = array(
322 322
 			'post_meta' => array(
323 323
 				'_stripe_customer_id' => array(
324
-					'value' => get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true ),
324
+					'value' => get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true),
325 325
 					'label' => 'Stripe Customer ID',
326 326
 				),
327 327
 				'_stripe_source_id' => array(
@@ -342,22 +342,22 @@  discard block
 block discarded – undo
342 342
 	 * @param array $payment_meta associative array of meta data required for automatic payments
343 343
 	 * @return array
344 344
 	 */
345
-	public function validate_subscription_payment_meta( $payment_method_id, $payment_meta ) {
346
-		if ( $this->id === $payment_method_id ) {
345
+	public function validate_subscription_payment_meta($payment_method_id, $payment_meta) {
346
+		if ($this->id === $payment_method_id) {
347 347
 
348
-			if ( ! isset( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) || empty( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) ) {
349
-				throw new Exception( __( 'A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe' ) );
350
-			} elseif ( 0 !== strpos( $payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_' ) ) {
351
-				throw new Exception( __( 'Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe' ) );
348
+			if ( ! isset($payment_meta['post_meta']['_stripe_customer_id']['value']) || empty($payment_meta['post_meta']['_stripe_customer_id']['value'])) {
349
+				throw new Exception(__('A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe'));
350
+			} elseif (0 !== strpos($payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_')) {
351
+				throw new Exception(__('Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe'));
352 352
 			}
353 353
 
354 354
 			if (
355
-				( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
356
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'card_' ) )
357
-				&& ( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
358
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'src_' ) ) ) {
355
+				( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
356
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'card_'))
357
+				&& ( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
358
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'src_')) ) {
359 359
 
360
-				throw new Exception( __( 'Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe' ) );
360
+				throw new Exception(__('Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe'));
361 361
 			}
362 362
 		}
363 363
 	}
@@ -370,67 +370,67 @@  discard block
 block discarded – undo
370 370
 	 * @param WC_Subscription $subscription the subscription details
371 371
 	 * @return string the subscription payment method
372 372
 	 */
373
-	public function maybe_render_subscription_payment_method( $payment_method_to_display, $subscription ) {
373
+	public function maybe_render_subscription_payment_method($payment_method_to_display, $subscription) {
374 374
 		$customer_user = WC_Stripe_Helper::is_pre_30() ? $subscription->customer_user : $subscription->get_customer_id();
375 375
 
376 376
 		// bail for other payment methods
377
-		if ( ( WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method() ) !== $this->id || ! $customer_user ) {
377
+		if ((WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method()) !== $this->id || ! $customer_user) {
378 378
 			return $payment_method_to_display;
379 379
 		}
380 380
 
381
-		$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
381
+		$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
382 382
 
383 383
 		// For BW compat will remove in future.
384
-		if ( empty( $stripe_source_id ) ) {
385
-			$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
384
+		if (empty($stripe_source_id)) {
385
+			$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
386 386
 
387 387
 			// Take this opportunity to update the key name.
388
-			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 );
388
+			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);
389 389
 		}
390 390
 
391 391
 		$stripe_customer    = new WC_Stripe_Customer();
392
-		$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true );
392
+		$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true);
393 393
 
394 394
 		// If we couldn't find a Stripe customer linked to the subscription, fallback to the user meta data.
395
-		if ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) {
395
+		if ( ! $stripe_customer_id || ! is_string($stripe_customer_id)) {
396 396
 			$user_id            = $customer_user;
397
-			$stripe_customer_id = get_user_meta( $user_id, '_stripe_customer_id', true );
398
-			$stripe_source_id   = get_user_meta( $user_id, '_stripe_source_id', true );
397
+			$stripe_customer_id = get_user_meta($user_id, '_stripe_customer_id', true);
398
+			$stripe_source_id   = get_user_meta($user_id, '_stripe_source_id', true);
399 399
 
400 400
 			// For BW compat will remove in future.
401
-			if ( empty( $stripe_source_id ) ) {
402
-				$stripe_source_id = get_user_meta( $user_id, '_stripe_card_id', true );
401
+			if (empty($stripe_source_id)) {
402
+				$stripe_source_id = get_user_meta($user_id, '_stripe_card_id', true);
403 403
 
404 404
 				// Take this opportunity to update the key name.
405
-				update_user_meta( $user_id, '_stripe_source_id', $stripe_source_id );
405
+				update_user_meta($user_id, '_stripe_source_id', $stripe_source_id);
406 406
 			}
407 407
 		}
408 408
 
409 409
 		// If we couldn't find a Stripe customer linked to the account, fallback to the order meta data.
410
-		if ( ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) && false !== $subscription->order ) {
411
-			$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_customer_id', true );
412
-			$stripe_source_id   = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_source_id', true );
410
+		if (( ! $stripe_customer_id || ! is_string($stripe_customer_id)) && false !== $subscription->order) {
411
+			$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_customer_id', true);
412
+			$stripe_source_id   = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_source_id', true);
413 413
 
414 414
 			// For BW compat will remove in future.
415
-			if ( empty( $stripe_source_id ) ) {
416
-				$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_card_id', true );
415
+			if (empty($stripe_source_id)) {
416
+				$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_card_id', true);
417 417
 
418 418
 				// Take this opportunity to update the key name.
419
-				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 );
419
+				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);
420 420
 			}
421 421
 		}
422 422
 
423
-		$stripe_customer->set_id( $stripe_customer_id );
423
+		$stripe_customer->set_id($stripe_customer_id);
424 424
 		$sources = $stripe_customer->get_sources();
425 425
 
426
-		if ( $sources ) {
427
-			foreach ( $sources as $source ) {
428
-				if ( $source->id === $stripe_source_id ) {
429
-					if ( $source->sepa_debit ) {
426
+		if ($sources) {
427
+			foreach ($sources as $source) {
428
+				if ($source->id === $stripe_source_id) {
429
+					if ($source->sepa_debit) {
430 430
 						/* translators: 1) last 4 digits of SEPA Direct Debit */
431
-						$payment_method_to_display = sprintf( __( 'Via SEPA Direct Debit ending in %1$s', 'woocommerce-gateway-stripe' ), $source->sepa_debit->last4 );
431
+						$payment_method_to_display = sprintf(__('Via SEPA Direct Debit ending in %1$s', 'woocommerce-gateway-stripe'), $source->sepa_debit->last4);
432 432
 					} else {
433
-						$payment_method_to_display = __( 'N/A', 'woocommerce-gateway-stripe' );
433
+						$payment_method_to_display = __('N/A', 'woocommerce-gateway-stripe');
434 434
 					}
435 435
 					break;
436 436
 				}
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.
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-subs-compat.php 2 patches
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.
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.
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/admin/stripe-eps-settings.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,41 +1,41 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
6
-return apply_filters( 'wc_stripe_eps_settings',
6
+return apply_filters('wc_stripe_eps_settings',
7 7
 	array(
8 8
 		'geo_target' => array(
9
-			'description' => __( 'Relevant Payer Geography: Austria', 'woocommerce-gateway-stripe' ),
9
+			'description' => __('Relevant Payer Geography: Austria', 'woocommerce-gateway-stripe'),
10 10
 			'type'        => 'title',
11 11
 		),
12 12
 		'activation' => array(
13
-			'description' => __( 'Must be activated from your Stripe Dashboard Settings <a href="https://dashboard.stripe.com/account/payments/settings" target="_blank">here</a>', 'woocommerce-gateway-stripe' ),
13
+			'description' => __('Must be activated from your Stripe Dashboard Settings <a href="https://dashboard.stripe.com/account/payments/settings" target="_blank">here</a>', 'woocommerce-gateway-stripe'),
14 14
 			'type'        => 'title',
15 15
 		),
16 16
 		'enabled' => array(
17
-			'title'       => __( 'Enable/Disable', 'woocommerce-gateway-stripe' ),
18
-			'label'       => __( 'Enable Stripe EPS', 'woocommerce-gateway-stripe' ),
17
+			'title'       => __('Enable/Disable', 'woocommerce-gateway-stripe'),
18
+			'label'       => __('Enable Stripe EPS', 'woocommerce-gateway-stripe'),
19 19
 			'type'        => 'checkbox',
20 20
 			'description' => '',
21 21
 			'default'     => 'no',
22 22
 		),
23 23
 		'title' => array(
24
-			'title'       => __( 'Title', 'woocommerce-gateway-stripe' ),
24
+			'title'       => __('Title', 'woocommerce-gateway-stripe'),
25 25
 			'type'        => 'text',
26
-			'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe' ),
27
-			'default'     => __( 'EPS', 'woocommerce-gateway-stripe' ),
26
+			'description' => __('This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe'),
27
+			'default'     => __('EPS', 'woocommerce-gateway-stripe'),
28 28
 			'desc_tip'    => true,
29 29
 		),
30 30
 		'description' => array(
31
-			'title'       => __( 'Description', 'woocommerce-gateway-stripe' ),
31
+			'title'       => __('Description', 'woocommerce-gateway-stripe'),
32 32
 			'type'        => 'text',
33
-			'description' => __( 'This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe' ),
34
-			'default'     => __( 'You will be redirected to EPS.', 'woocommerce-gateway-stripe' ),
33
+			'description' => __('This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe'),
34
+			'default'     => __('You will be redirected to EPS.', 'woocommerce-gateway-stripe'),
35 35
 			'desc_tip'    => true,
36 36
 		),
37 37
 		'webhook' => array(
38
-			'title'       => __( 'Webhook Enpoints', 'woocommerce-gateway-stripe' ),
38
+			'title'       => __('Webhook Enpoints', 'woocommerce-gateway-stripe'),
39 39
 			'type'        => 'title',
40 40
 			/* translators: webhook URL */
41 41
 			'description' => $this->display_admin_settings_webhook_description(),
Please login to merge, or discard this patch.
includes/admin/stripe-settings.php 1 patch
Spacing   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -1,189 +1,189 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
6
-return apply_filters( 'wc_stripe_settings',
6
+return apply_filters('wc_stripe_settings',
7 7
 	array(
8 8
 		'enabled' => array(
9
-			'title'       => __( 'Enable/Disable', 'woocommerce-gateway-stripe' ),
10
-			'label'       => __( 'Enable Stripe', 'woocommerce-gateway-stripe' ),
9
+			'title'       => __('Enable/Disable', 'woocommerce-gateway-stripe'),
10
+			'label'       => __('Enable Stripe', 'woocommerce-gateway-stripe'),
11 11
 			'type'        => 'checkbox',
12 12
 			'description' => '',
13 13
 			'default'     => 'no',
14 14
 		),
15 15
 		'title' => array(
16
-			'title'       => __( 'Title', 'woocommerce-gateway-stripe' ),
16
+			'title'       => __('Title', 'woocommerce-gateway-stripe'),
17 17
 			'type'        => 'text',
18
-			'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe' ),
19
-			'default'     => __( 'Credit Card (Stripe)', 'woocommerce-gateway-stripe' ),
18
+			'description' => __('This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe'),
19
+			'default'     => __('Credit Card (Stripe)', 'woocommerce-gateway-stripe'),
20 20
 			'desc_tip'    => true,
21 21
 		),
22 22
 		'description' => array(
23
-			'title'       => __( 'Description', 'woocommerce-gateway-stripe' ),
23
+			'title'       => __('Description', 'woocommerce-gateway-stripe'),
24 24
 			'type'        => 'text',
25
-			'description' => __( 'This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe' ),
26
-			'default'     => __( 'Pay with your credit card via Stripe.', 'woocommerce-gateway-stripe' ),
25
+			'description' => __('This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe'),
26
+			'default'     => __('Pay with your credit card via Stripe.', 'woocommerce-gateway-stripe'),
27 27
 			'desc_tip'    => true,
28 28
 		),
29 29
 		'webhook' => array(
30
-			'title'       => __( 'Webhook Endpoints', 'woocommerce-gateway-stripe' ),
30
+			'title'       => __('Webhook Endpoints', 'woocommerce-gateway-stripe'),
31 31
 			'type'        => 'title',
32 32
 			/* translators: webhook URL */
33 33
 			'description' => $this->display_admin_settings_webhook_description(),
34 34
 		),
35 35
 		'testmode' => array(
36
-			'title'       => __( 'Test mode', 'woocommerce-gateway-stripe' ),
37
-			'label'       => __( 'Enable Test Mode', 'woocommerce-gateway-stripe' ),
36
+			'title'       => __('Test mode', 'woocommerce-gateway-stripe'),
37
+			'label'       => __('Enable Test Mode', 'woocommerce-gateway-stripe'),
38 38
 			'type'        => 'checkbox',
39
-			'description' => __( 'Place the payment gateway in test mode using test API keys.', 'woocommerce-gateway-stripe' ),
39
+			'description' => __('Place the payment gateway in test mode using test API keys.', 'woocommerce-gateway-stripe'),
40 40
 			'default'     => 'yes',
41 41
 			'desc_tip'    => true,
42 42
 		),
43 43
 		'test_publishable_key' => array(
44
-			'title'       => __( 'Test Publishable Key', 'woocommerce-gateway-stripe' ),
44
+			'title'       => __('Test Publishable Key', 'woocommerce-gateway-stripe'),
45 45
 			'type'        => 'password',
46
-			'description' => __( 'Get your API keys from your stripe account.', 'woocommerce-gateway-stripe' ),
46
+			'description' => __('Get your API keys from your stripe account.', 'woocommerce-gateway-stripe'),
47 47
 			'default'     => '',
48 48
 			'desc_tip'    => true,
49 49
 		),
50 50
 		'test_secret_key' => array(
51
-			'title'       => __( 'Test Secret Key', 'woocommerce-gateway-stripe' ),
51
+			'title'       => __('Test Secret Key', 'woocommerce-gateway-stripe'),
52 52
 			'type'        => 'password',
53
-			'description' => __( 'Get your API keys from your stripe account.', 'woocommerce-gateway-stripe' ),
53
+			'description' => __('Get your API keys from your stripe account.', 'woocommerce-gateway-stripe'),
54 54
 			'default'     => '',
55 55
 			'desc_tip'    => true,
56 56
 		),
57 57
 		'publishable_key' => array(
58
-			'title'       => __( 'Live Publishable Key', 'woocommerce-gateway-stripe' ),
58
+			'title'       => __('Live Publishable Key', 'woocommerce-gateway-stripe'),
59 59
 			'type'        => 'password',
60
-			'description' => __( 'Get your API keys from your stripe account.', 'woocommerce-gateway-stripe' ),
60
+			'description' => __('Get your API keys from your stripe account.', 'woocommerce-gateway-stripe'),
61 61
 			'default'     => '',
62 62
 			'desc_tip'    => true,
63 63
 		),
64 64
 		'secret_key' => array(
65
-			'title'       => __( 'Live Secret Key', 'woocommerce-gateway-stripe' ),
65
+			'title'       => __('Live Secret Key', 'woocommerce-gateway-stripe'),
66 66
 			'type'        => 'password',
67
-			'description' => __( 'Get your API keys from your stripe account.', 'woocommerce-gateway-stripe' ),
67
+			'description' => __('Get your API keys from your stripe account.', 'woocommerce-gateway-stripe'),
68 68
 			'default'     => '',
69 69
 			'desc_tip'    => true,
70 70
 		),
71 71
 		'inline_cc_form' => array(
72
-			'title'       => __( 'Inline Credit Card Form', 'woocommerce-gateway-stripe' ),
72
+			'title'       => __('Inline Credit Card Form', 'woocommerce-gateway-stripe'),
73 73
 			'type'        => 'checkbox',
74
-			'description' => __( 'Choose the style you want to show for your credit card form. When unchecked, the credit card form will display separate credit card number field, expiry date field and cvc field.', 'woocommerce-gateway-stripe' ),
74
+			'description' => __('Choose the style you want to show for your credit card form. When unchecked, the credit card form will display separate credit card number field, expiry date field and cvc field.', 'woocommerce-gateway-stripe'),
75 75
 			'default'     => 'no',
76 76
 			'desc_tip'    => true,
77 77
 		),
78 78
 		'statement_descriptor' => array(
79
-			'title'       => __( 'Statement Descriptor', 'woocommerce-gateway-stripe' ),
79
+			'title'       => __('Statement Descriptor', 'woocommerce-gateway-stripe'),
80 80
 			'type'        => 'text',
81
-			'description' => __( 'This may be up to 22 characters. The statement description must contain at least one letter, may not include ><"\' characters, and will appear on your customer\'s statement in capital letters.', 'woocommerce-gateway-stripe' ),
81
+			'description' => __('This may be up to 22 characters. The statement description must contain at least one letter, may not include ><"\' characters, and will appear on your customer\'s statement in capital letters.', 'woocommerce-gateway-stripe'),
82 82
 			'default'     => '',
83 83
 			'desc_tip'    => true,
84 84
 		),
85 85
 		'capture' => array(
86
-			'title'       => __( 'Capture', 'woocommerce-gateway-stripe' ),
87
-			'label'       => __( 'Capture charge immediately', 'woocommerce-gateway-stripe' ),
86
+			'title'       => __('Capture', 'woocommerce-gateway-stripe'),
87
+			'label'       => __('Capture charge immediately', 'woocommerce-gateway-stripe'),
88 88
 			'type'        => 'checkbox',
89
-			'description' => __( 'Whether or not to immediately capture the charge. When unchecked, the charge issues an authorization and will need to be captured later. Uncaptured charges expire in 7 days.', 'woocommerce-gateway-stripe' ),
89
+			'description' => __('Whether or not to immediately capture the charge. When unchecked, the charge issues an authorization and will need to be captured later. Uncaptured charges expire in 7 days.', 'woocommerce-gateway-stripe'),
90 90
 			'default'     => 'yes',
91 91
 			'desc_tip'    => true,
92 92
 		),
93 93
 		'three_d_secure' => array(
94
-			'title'       => __( '3D Secure', 'woocommerce-gateway-stripe' ),
95
-			'label'       => __( 'Require 3D Secure when applicable', 'woocommerce-gateway-stripe' ),
94
+			'title'       => __('3D Secure', 'woocommerce-gateway-stripe'),
95
+			'label'       => __('Require 3D Secure when applicable', 'woocommerce-gateway-stripe'),
96 96
 			'type'        => 'checkbox',
97
-			'description' => __( 'Some payment methods have 3D Secure feature. This is an extra security layer for your store. Choose how to handle payments when 3D Secure is recommended. Enabling would require customers to use 3D Secure when recommended.', 'woocommerce-gateway-stripe' ),
97
+			'description' => __('Some payment methods have 3D Secure feature. This is an extra security layer for your store. Choose how to handle payments when 3D Secure is recommended. Enabling would require customers to use 3D Secure when recommended.', 'woocommerce-gateway-stripe'),
98 98
 			'default'     => 'yes',
99 99
 			'desc_tip'    => true,
100 100
 		),
101 101
 		'stripe_checkout' => array(
102
-			'title'       => __( 'Stripe Checkout', 'woocommerce-gateway-stripe' ),
103
-			'label'       => __( 'Enable Stripe Checkout', 'woocommerce-gateway-stripe' ),
102
+			'title'       => __('Stripe Checkout', 'woocommerce-gateway-stripe'),
103
+			'label'       => __('Enable Stripe Checkout', 'woocommerce-gateway-stripe'),
104 104
 			'type'        => 'checkbox',
105
-			'description' => __( 'If enabled, this option shows a "pay" button and modal credit card form on the checkout, instead of credit card fields directly on the page.', 'woocommerce-gateway-stripe' ),
105
+			'description' => __('If enabled, this option shows a "pay" button and modal credit card form on the checkout, instead of credit card fields directly on the page.', 'woocommerce-gateway-stripe'),
106 106
 			'default'     => 'no',
107 107
 			'desc_tip'    => true,
108 108
 		),
109 109
 		'stripe_bitcoin' => array(
110
-			'title'       => __( 'Bitcoin Currency', 'woocommerce-gateway-stripe' ),
111
-			'label'       => __( 'Enable Bitcoin Currency', 'woocommerce-gateway-stripe' ),
110
+			'title'       => __('Bitcoin Currency', 'woocommerce-gateway-stripe'),
111
+			'label'       => __('Enable Bitcoin Currency', 'woocommerce-gateway-stripe'),
112 112
 			'type'        => 'checkbox',
113
-			'description' => __( 'If enabled, an option to accept bitcoin will show on the checkout modal. Note: Stripe Checkout needs to be enabled and store currency must be set to USD.', 'woocommerce-gateway-stripe' ),
113
+			'description' => __('If enabled, an option to accept bitcoin will show on the checkout modal. Note: Stripe Checkout needs to be enabled and store currency must be set to USD.', 'woocommerce-gateway-stripe'),
114 114
 			'default'     => 'no',
115 115
 			'desc_tip'    => true,
116 116
 		),
117 117
 		'stripe_checkout_image' => array(
118
-			'title'       => __( 'Stripe Checkout Image', 'woocommerce-gateway-stripe' ),
119
-			'description' => __( 'Optionally enter the URL to a 128x128px image of your brand or product. e.g. <code>https://yoursite.com/wp-content/uploads/2013/09/yourimage.jpg</code>', 'woocommerce-gateway-stripe' ),
118
+			'title'       => __('Stripe Checkout Image', 'woocommerce-gateway-stripe'),
119
+			'description' => __('Optionally enter the URL to a 128x128px image of your brand or product. e.g. <code>https://yoursite.com/wp-content/uploads/2013/09/yourimage.jpg</code>', 'woocommerce-gateway-stripe'),
120 120
 			'type'        => 'text',
121 121
 			'default'     => '',
122 122
 			'desc_tip'    => true,
123 123
 		),
124 124
 		'stripe_checkout_description' => array(
125
-			'title'       => __( 'Stripe Checkout Description', 'woocommerce-gateway-stripe' ),
125
+			'title'       => __('Stripe Checkout Description', 'woocommerce-gateway-stripe'),
126 126
 			'type'        => 'text',
127
-			'description' => __( 'Shows a description of your store on Stripe Modal Checkout.', 'woocommerce-gateway-stripe' ),
127
+			'description' => __('Shows a description of your store on Stripe Modal Checkout.', 'woocommerce-gateway-stripe'),
128 128
 			'default'     => '',
129 129
 			'desc_tip'    => true,
130 130
 		),
131 131
 		'payment_request' => array(
132
-			'title'       => __( 'Payment Request Buttons', 'woocommerce-gateway-stripe' ),
132
+			'title'       => __('Payment Request Buttons', 'woocommerce-gateway-stripe'),
133 133
 			/* translators: 1) br tag 2) opening anchor tag 3) closing anchor tag */
134
-			'label'       => sprintf( __( 'Enable Payment Request Buttons. (Apple Pay/Chrome Payment Request API) %1$sBy using Apple Pay, you agree to %2$s and %3$s\'s terms of service.', 'woocommerce-gateway-stripe' ), '<br />', '<a href="https://stripe.com/apple-pay/legal" target="_blank">Stripe</a>', '<a href="https://developer.apple.com/apple-pay/acceptable-use-guidelines-for-websites/" target="_blank">Apple</a>' ),
134
+			'label'       => sprintf(__('Enable Payment Request Buttons. (Apple Pay/Chrome Payment Request API) %1$sBy using Apple Pay, you agree to %2$s and %3$s\'s terms of service.', 'woocommerce-gateway-stripe'), '<br />', '<a href="https://stripe.com/apple-pay/legal" target="_blank">Stripe</a>', '<a href="https://developer.apple.com/apple-pay/acceptable-use-guidelines-for-websites/" target="_blank">Apple</a>'),
135 135
 			'type'        => 'checkbox',
136
-			'description' => __( 'If enabled, users will be able to pay using Apple Pay or Chrome Payment Request if supported by the browser.', 'woocommerce-gateway-stripe' ),
136
+			'description' => __('If enabled, users will be able to pay using Apple Pay or Chrome Payment Request if supported by the browser.', 'woocommerce-gateway-stripe'),
137 137
 			'default'     => 'yes',
138 138
 			'desc_tip'    => true,
139 139
 		),
140 140
 		'payment_request_button_type' => array(
141
-			'title'       => __( 'Payment Request Button Type', 'woocommerce-gateway-stripe' ),
142
-			'label'       => __( 'Button Type', 'woocommerce-gateway-stripe' ),
141
+			'title'       => __('Payment Request Button Type', 'woocommerce-gateway-stripe'),
142
+			'label'       => __('Button Type', 'woocommerce-gateway-stripe'),
143 143
 			'type'        => 'select',
144
-			'description' => __( 'Select the button type you would like to show.', 'woocommerce-gateway-stripe' ),
144
+			'description' => __('Select the button type you would like to show.', 'woocommerce-gateway-stripe'),
145 145
 			'default'     => 'buy',
146 146
 			'desc_tip'    => true,
147 147
 			'options'     => array(
148
-				'default' => __( 'Default', 'woocommerce-gateway-stripe' ),
149
-				'buy'     => __( 'Buy', 'woocommerce-gateway-stripe' ),
150
-				'donate'  => __( 'Donate', 'woocommerce-gateway-stripe' ),
148
+				'default' => __('Default', 'woocommerce-gateway-stripe'),
149
+				'buy'     => __('Buy', 'woocommerce-gateway-stripe'),
150
+				'donate'  => __('Donate', 'woocommerce-gateway-stripe'),
151 151
 			),
152 152
 		),
153 153
 		'payment_request_button_theme' => array(
154
-			'title'       => __( 'Payment Request Button Theme', 'woocommerce-gateway-stripe' ),
155
-			'label'       => __( 'Button Theme', 'woocommerce-gateway-stripe' ),
154
+			'title'       => __('Payment Request Button Theme', 'woocommerce-gateway-stripe'),
155
+			'label'       => __('Button Theme', 'woocommerce-gateway-stripe'),
156 156
 			'type'        => 'select',
157
-			'description' => __( 'Select the button theme you would like to show.', 'woocommerce-gateway-stripe' ),
157
+			'description' => __('Select the button theme you would like to show.', 'woocommerce-gateway-stripe'),
158 158
 			'default'     => 'dark',
159 159
 			'desc_tip'    => true,
160 160
 			'options'     => array(
161
-				'dark'          => __( 'Dark', 'woocommerce-gateway-stripe' ),
162
-				'light'         => __( 'Light', 'woocommerce-gateway-stripe' ),
163
-				'light-outline' => __( 'Light-Outline', 'woocommerce-gateway-stripe' ),
161
+				'dark'          => __('Dark', 'woocommerce-gateway-stripe'),
162
+				'light'         => __('Light', 'woocommerce-gateway-stripe'),
163
+				'light-outline' => __('Light-Outline', 'woocommerce-gateway-stripe'),
164 164
 			),
165 165
 		),
166 166
 		'payment_request_button_height' => array(
167
-			'title'       => __( 'Payment Request Button Height', 'woocommerce-gateway-stripe' ),
168
-			'label'       => __( 'Button Height', 'woocommerce-gateway-stripe' ),
167
+			'title'       => __('Payment Request Button Height', 'woocommerce-gateway-stripe'),
168
+			'label'       => __('Button Height', 'woocommerce-gateway-stripe'),
169 169
 			'type'        => 'text',
170
-			'description' => __( 'Enter the height you would like the button to be in pixels. Width will always be 100%.', 'woocommerce-gateway-stripe' ),
170
+			'description' => __('Enter the height you would like the button to be in pixels. Width will always be 100%.', 'woocommerce-gateway-stripe'),
171 171
 			'default'     => '44',
172 172
 			'desc_tip'    => true,
173 173
 		),
174 174
 		'saved_cards' => array(
175
-			'title'       => __( 'Saved Cards', 'woocommerce-gateway-stripe' ),
176
-			'label'       => __( 'Enable Payment via Saved Cards', 'woocommerce-gateway-stripe' ),
175
+			'title'       => __('Saved Cards', 'woocommerce-gateway-stripe'),
176
+			'label'       => __('Enable Payment via Saved Cards', 'woocommerce-gateway-stripe'),
177 177
 			'type'        => 'checkbox',
178
-			'description' => __( 'If enabled, users will be able to pay with a saved card during checkout. Card details are saved on Stripe servers, not on your store.', 'woocommerce-gateway-stripe' ),
178
+			'description' => __('If enabled, users will be able to pay with a saved card during checkout. Card details are saved on Stripe servers, not on your store.', 'woocommerce-gateway-stripe'),
179 179
 			'default'     => 'no',
180 180
 			'desc_tip'    => true,
181 181
 		),
182 182
 		'logging' => array(
183
-			'title'       => __( 'Logging', 'woocommerce-gateway-stripe' ),
184
-			'label'       => __( 'Log debug messages', 'woocommerce-gateway-stripe' ),
183
+			'title'       => __('Logging', 'woocommerce-gateway-stripe'),
184
+			'label'       => __('Log debug messages', 'woocommerce-gateway-stripe'),
185 185
 			'type'        => 'checkbox',
186
-			'description' => __( 'Save debug messages to the WooCommerce System Status log.', 'woocommerce-gateway-stripe' ),
186
+			'description' => __('Save debug messages to the WooCommerce System Status log.', 'woocommerce-gateway-stripe'),
187 187
 			'default'     => 'no',
188 188
 			'desc_tip'    => true,
189 189
 		),
Please login to merge, or discard this patch.
includes/admin/stripe-ideal-settings.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,45 +1,45 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
6
-return apply_filters( 'wc_stripe_ideal_settings',
6
+return apply_filters('wc_stripe_ideal_settings',
7 7
 	array(
8 8
 		'geo_target' => array(
9
-			'description' => __( 'Relevant Payer Geography: The Netherlands', 'woocommerce-gateway-stripe' ),
9
+			'description' => __('Relevant Payer Geography: The Netherlands', 'woocommerce-gateway-stripe'),
10 10
 			'type'        => 'title',
11 11
 		),
12 12
 		'guide' => array(
13
-			'description' => __( '<a href="https://stripe.com/payments/payment-methods-guide#ideal" target="_blank">Payment Method Guide</a>', 'woocommerce-gateway-stripe' ),
13
+			'description' => __('<a href="https://stripe.com/payments/payment-methods-guide#ideal" target="_blank">Payment Method Guide</a>', 'woocommerce-gateway-stripe'),
14 14
 			'type'        => 'title',
15 15
 		),
16 16
 		'activation' => array(
17
-			'description' => __( 'Must be activated from your Stripe Dashboard Settings <a href="https://dashboard.stripe.com/account/payments/settings" target="_blank">here</a>', 'woocommerce-gateway-stripe' ),
17
+			'description' => __('Must be activated from your Stripe Dashboard Settings <a href="https://dashboard.stripe.com/account/payments/settings" target="_blank">here</a>', 'woocommerce-gateway-stripe'),
18 18
 			'type'   => 'title',
19 19
 		),
20 20
 		'enabled' => array(
21
-			'title'       => __( 'Enable/Disable', 'woocommerce-gateway-stripe' ),
22
-			'label'       => __( 'Enable Stripe iDeal', 'woocommerce-gateway-stripe' ),
21
+			'title'       => __('Enable/Disable', 'woocommerce-gateway-stripe'),
22
+			'label'       => __('Enable Stripe iDeal', 'woocommerce-gateway-stripe'),
23 23
 			'type'        => 'checkbox',
24 24
 			'description' => '',
25 25
 			'default'     => 'no',
26 26
 		),
27 27
 		'title' => array(
28
-			'title'       => __( 'Title', 'woocommerce-gateway-stripe' ),
28
+			'title'       => __('Title', 'woocommerce-gateway-stripe'),
29 29
 			'type'        => 'text',
30
-			'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe' ),
31
-			'default'     => __( 'iDeal', 'woocommerce-gateway-stripe' ),
30
+			'description' => __('This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe'),
31
+			'default'     => __('iDeal', 'woocommerce-gateway-stripe'),
32 32
 			'desc_tip'    => true,
33 33
 		),
34 34
 		'description' => array(
35
-			'title'       => __( 'Description', 'woocommerce-gateway-stripe' ),
35
+			'title'       => __('Description', 'woocommerce-gateway-stripe'),
36 36
 			'type'        => 'text',
37
-			'description' => __( 'This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe' ),
38
-			'default'     => __( 'You will be redirected to iDeal.', 'woocommerce-gateway-stripe' ),
37
+			'description' => __('This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe'),
38
+			'default'     => __('You will be redirected to iDeal.', 'woocommerce-gateway-stripe'),
39 39
 			'desc_tip'    => true,
40 40
 		),
41 41
 		'webhook' => array(
42
-			'title'       => __( 'Webhook Endpoints', 'woocommerce-gateway-stripe' ),
42
+			'title'       => __('Webhook Endpoints', 'woocommerce-gateway-stripe'),
43 43
 			'type'        => 'title',
44 44
 			/* translators: webhook URL */
45 45
 			'description' => $this->display_admin_settings_webhook_description(),
Please login to merge, or discard this patch.