Completed
Push — master ( 0f8ee9...489ba3 )
by Roy
02:10
created
woocommerce-gateway-stripe.php 1 patch
Spacing   +81 added lines, -81 removed lines patch added patch discarded remove patch
@@ -15,11 +15,11 @@  discard block
 block discarded – undo
15 15
  *
16 16
  */
17 17
 
18
-if ( ! defined( 'ABSPATH' ) ) {
18
+if ( ! defined('ABSPATH')) {
19 19
 	exit;
20 20
 }
21 21
 
22
-require_once( 'woo-includes/woo-functions.php' );
22
+require_once('woo-includes/woo-functions.php');
23 23
 
24 24
 /**
25 25
  * WooCommerce fallback notice.
@@ -28,24 +28,24 @@  discard block
 block discarded – undo
28 28
  * @return string
29 29
  */
30 30
 function woocommerce_stripe_missing_wc_notice() {
31
-	echo '<div class="error"><p><strong>' . sprintf( esc_html__( 'Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe' ), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>' ) . '</strong></p></div>';
31
+	echo '<div class="error"><p><strong>' . sprintf(esc_html__('Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe'), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>') . '</strong></p></div>';
32 32
 }
33 33
 
34
-if ( ! is_woocommerce_active() ) {
35
-	add_action( 'admin_notices', 'woocommerce_stripe_missing_wc_notice' );
34
+if ( ! is_woocommerce_active()) {
35
+	add_action('admin_notices', 'woocommerce_stripe_missing_wc_notice');
36 36
 	return;
37 37
 }
38 38
 
39
-if ( ! class_exists( 'WC_Stripe' ) ) :
39
+if ( ! class_exists('WC_Stripe')) :
40 40
 	/**
41 41
 	 * Required minimums and constants
42 42
 	 */
43
-	define( 'WC_STRIPE_VERSION', '4.1.1' );
44
-	define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' );
45
-	define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' );
46
-	define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
47
-	define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
48
-	define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
43
+	define('WC_STRIPE_VERSION', '4.1.1');
44
+	define('WC_STRIPE_MIN_PHP_VER', '5.6.0');
45
+	define('WC_STRIPE_MIN_WC_VER', '2.6.0');
46
+	define('WC_STRIPE_MAIN_FILE', __FILE__);
47
+	define('WC_STRIPE_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
48
+	define('WC_STRIPE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
49 49
 
50 50
 	class WC_Stripe {
51 51
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 		 * @return Singleton The *Singleton* instance.
66 66
 		 */
67 67
 		public static function get_instance() {
68
-			if ( null === self::$instance ) {
68
+			if (null === self::$instance) {
69 69
 				self::$instance = new self();
70 70
 			}
71 71
 			return self::$instance;
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
 		 * *Singleton* via the `new` operator from outside of this class.
93 93
 		 */
94 94
 		private function __construct() {
95
-			add_action( 'admin_init', array( $this, 'install' ) );
96
-			add_action( 'plugins_loaded', array( $this, 'init' ) );
95
+			add_action('admin_init', array($this, 'install'));
96
+			add_action('plugins_loaded', array($this, 'init'));
97 97
 		}
98 98
 
99 99
 		/**
@@ -103,45 +103,45 @@  discard block
 block discarded – undo
103 103
 		 * @version 4.0.0
104 104
 		 */
105 105
 		public function init() {
106
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' );
107
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' );
108
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' );
109
-			include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' );
106
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-exception.php');
107
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-logger.php');
108
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-helper.php');
109
+			include_once(dirname(__FILE__) . '/includes/class-wc-stripe-api.php');
110 110
 
111
-			load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
111
+			load_plugin_textdomain('woocommerce-gateway-stripe', false, plugin_basename(dirname(__FILE__)) . '/languages');
112 112
 
113
-			require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' );
114
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php' );
115
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php' );
116
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php' );
117
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php' );
118
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php' );
119
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php' );
120
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php' );
121
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php' );
122
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php' );
123
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php' );
124
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php' );
125
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php' );
126
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php' );
127
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php' );
128
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php' );
129
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php' );
130
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php' );
131
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php' );
132
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php' );
133
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php' );
113
+			require_once(dirname(__FILE__) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php');
114
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-webhook-handler.php');
115
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-sepa-payment-token.php');
116
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-apple-pay-registration.php');
117
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-pre-orders-compat.php');
118
+			require_once(dirname(__FILE__) . '/includes/class-wc-gateway-stripe.php');
119
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php');
120
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php');
121
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php');
122
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php');
123
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php');
124
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php');
125
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php');
126
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php');
127
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php');
128
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-stripe-payment-request.php');
129
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-subs-compat.php');
130
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php');
131
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-order-handler.php');
132
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-payment-tokens.php');
133
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-customer.php');
134 134
 
135
-			if ( is_admin() ) {
136
-				require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php' );
135
+			if (is_admin()) {
136
+				require_once(dirname(__FILE__) . '/includes/admin/class-wc-stripe-admin-notices.php');
137 137
 			}
138 138
 
139 139
 			// REMOVE IN THE FUTURE.
140
-			require_once( dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php' );
140
+			require_once(dirname(__FILE__) . '/includes/deprecated/class-wc-stripe-apple-pay.php');
141 141
 
142
-			add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) );
143
-			add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) );
144
-			add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) );
142
+			add_filter('woocommerce_payment_gateways', array($this, 'add_gateways'));
143
+			add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links'));
144
+			add_filter('woocommerce_get_sections_checkout', array($this, 'filter_gateway_order_admin'));
145 145
 		}
146 146
 
147 147
 		/**
@@ -151,8 +151,8 @@  discard block
 block discarded – undo
151 151
 		 * @version 4.0.0
152 152
 		 */
153 153
 		public function update_plugin_version() {
154
-			delete_option( 'wc_stripe_version' );
155
-			update_option( 'wc_stripe_version', WC_STRIPE_VERSION );
154
+			delete_option('wc_stripe_version');
155
+			update_option('wc_stripe_version', WC_STRIPE_VERSION);
156 156
 		}
157 157
 
158 158
 		/**
@@ -162,15 +162,15 @@  discard block
 block discarded – undo
162 162
 		 * @version 3.1.0
163 163
 		 */
164 164
 		public function install() {
165
-			if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) {
165
+			if ( ! is_plugin_active(plugin_basename(__FILE__))) {
166 166
 				return;
167 167
 			}
168 168
 
169
-			if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) {
170
-				do_action( 'woocommerce_stripe_updated' );
169
+			if ( ! defined('IFRAME_REQUEST') && (WC_STRIPE_VERSION !== get_option('wc_stripe_version'))) {
170
+				do_action('woocommerce_stripe_updated');
171 171
 
172
-				if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) {
173
-					define( 'WC_STRIPE_INSTALLING', true );
172
+				if ( ! defined('WC_STRIPE_INSTALLING')) {
173
+					define('WC_STRIPE_INSTALLING', true);
174 174
 				}
175 175
 
176 176
 				$this->update_plugin_version();
@@ -183,13 +183,13 @@  discard block
 block discarded – undo
183 183
 		 * @since 1.0.0
184 184
 		 * @version 4.0.0
185 185
 		 */
186
-		public function plugin_action_links( $links ) {
186
+		public function plugin_action_links($links) {
187 187
 			$plugin_links = array(
188
-				'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>',
189
-				'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>',
190
-				'<a href="https://woocommerce.com/contact-us/">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>',
188
+				'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__('Settings', 'woocommerce-gateway-stripe') . '</a>',
189
+				'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__('Docs', 'woocommerce-gateway-stripe') . '</a>',
190
+				'<a href="https://woocommerce.com/contact-us/">' . esc_html__('Support', 'woocommerce-gateway-stripe') . '</a>',
191 191
 			);
192
-			return array_merge( $plugin_links, $links );
192
+			return array_merge($plugin_links, $links);
193 193
 		}
194 194
 
195 195
 		/**
@@ -198,8 +198,8 @@  discard block
 block discarded – undo
198 198
 		 * @since 1.0.0
199 199
 		 * @version 4.0.0
200 200
 		 */
201
-		public function add_gateways( $methods ) {
202
-			if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) {
201
+		public function add_gateways($methods) {
202
+			if (class_exists('WC_Subscriptions_Order') && function_exists('wcs_create_renewal_order')) {
203 203
 				$methods[] = 'WC_Stripe_Subs_Compat';
204 204
 				$methods[] = 'WC_Stripe_Sepa_Subs_Compat';
205 205
 			} else {
@@ -225,28 +225,28 @@  discard block
 block discarded – undo
225 225
 		 * @since 4.0.0
226 226
 		 * @version 4.0.0
227 227
 		 */
228
-		public function filter_gateway_order_admin( $sections ) {
229
-			unset( $sections['stripe'] );
230
-			unset( $sections['stripe_bancontact'] );
231
-			unset( $sections['stripe_sofort'] );
232
-			unset( $sections['stripe_giropay'] );
233
-			unset( $sections['stripe_eps'] );
234
-			unset( $sections['stripe_ideal'] );
235
-			unset( $sections['stripe_p24'] );
236
-			unset( $sections['stripe_alipay'] );
237
-			unset( $sections['stripe_sepa'] );
238
-			unset( $sections['stripe_multibanco'] );
228
+		public function filter_gateway_order_admin($sections) {
229
+			unset($sections['stripe']);
230
+			unset($sections['stripe_bancontact']);
231
+			unset($sections['stripe_sofort']);
232
+			unset($sections['stripe_giropay']);
233
+			unset($sections['stripe_eps']);
234
+			unset($sections['stripe_ideal']);
235
+			unset($sections['stripe_p24']);
236
+			unset($sections['stripe_alipay']);
237
+			unset($sections['stripe_sepa']);
238
+			unset($sections['stripe_multibanco']);
239 239
 
240 240
 			$sections['stripe']            = 'Stripe';
241
-			$sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' );
242
-			$sections['stripe_sofort']     = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' );
243
-			$sections['stripe_giropay']    = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' );
244
-			$sections['stripe_eps']        = __( 'Stripe EPS', 'woocommerce-gateway-stripe' );
245
-			$sections['stripe_ideal']      = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' );
246
-			$sections['stripe_p24']        = __( 'Stripe P24', 'woocommerce-gateway-stripe' );
247
-			$sections['stripe_alipay']     = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' );
248
-			$sections['stripe_sepa']       = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' );
249
-			$sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' );
241
+			$sections['stripe_bancontact'] = __('Stripe Bancontact', 'woocommerce-gateway-stripe');
242
+			$sections['stripe_sofort']     = __('Stripe SOFORT', 'woocommerce-gateway-stripe');
243
+			$sections['stripe_giropay']    = __('Stripe Giropay', 'woocommerce-gateway-stripe');
244
+			$sections['stripe_eps']        = __('Stripe EPS', 'woocommerce-gateway-stripe');
245
+			$sections['stripe_ideal']      = __('Stripe iDeal', 'woocommerce-gateway-stripe');
246
+			$sections['stripe_p24']        = __('Stripe P24', 'woocommerce-gateway-stripe');
247
+			$sections['stripe_alipay']     = __('Stripe Alipay', 'woocommerce-gateway-stripe');
248
+			$sections['stripe_sepa']       = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe');
249
+			$sections['stripe_multibanco'] = __('Stripe Multibanco', 'woocommerce-gateway-stripe');
250 250
 
251 251
 			return $sections;
252 252
 		}
Please login to merge, or discard this patch.
tests/phpunit/bootstrap.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,34 +1,34 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-$_tests_dir = getenv( 'WP_TESTS_DIR' );
4
-if ( ! $_tests_dir ) {
3
+$_tests_dir = getenv('WP_TESTS_DIR');
4
+if ( ! $_tests_dir) {
5 5
 	$_tests_dir = '/tmp/wordpress-tests-lib';
6 6
 }
7 7
 
8 8
 require_once $_tests_dir . '/includes/functions.php';
9 9
 
10 10
 function _manually_load_plugin() {
11
-	$plugin_dir = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/';
11
+	$plugin_dir = dirname(dirname(dirname(dirname(__FILE__)))) . '/';
12 12
 	require $plugin_dir . 'woocommerce/woocommerce.php';
13 13
 	require $plugin_dir . 'woocommerce-gateway-stripe/woocommerce-gateway-stripe.php';
14 14
 }
15 15
 
16
-if ( ! function_exists( 'is_woocommerce_active' ) ) {
16
+if ( ! function_exists('is_woocommerce_active')) {
17 17
 	function is_woocommerce_active() {
18 18
 		return true;
19 19
 	}
20 20
 }
21 21
 
22
-tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
22
+tests_add_filter('muplugins_loaded', '_manually_load_plugin');
23 23
 
24 24
 require $_tests_dir . '/includes/bootstrap.php';
25 25
 
26
-$wc_tests_framework_base_dir = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/woocommerce/tests/framework/';
27
-require_once( $wc_tests_framework_base_dir . 'class-wc-mock-session-handler.php' );
28
-require_once( $wc_tests_framework_base_dir . 'class-wc-unit-test-case.php' );
29
-require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-product.php' );
30
-require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-coupon.php' );
31
-require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-fee.php' );
32
-require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-shipping.php' );
33
-require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-customer.php' );
34
-require_once( $wc_tests_framework_base_dir . 'helpers/class-wc-helper-order.php' );
26
+$wc_tests_framework_base_dir = dirname(dirname(dirname(dirname(__FILE__)))) . '/woocommerce/tests/framework/';
27
+require_once($wc_tests_framework_base_dir . 'class-wc-mock-session-handler.php');
28
+require_once($wc_tests_framework_base_dir . 'class-wc-unit-test-case.php');
29
+require_once($wc_tests_framework_base_dir . 'helpers/class-wc-helper-product.php');
30
+require_once($wc_tests_framework_base_dir . 'helpers/class-wc-helper-coupon.php');
31
+require_once($wc_tests_framework_base_dir . 'helpers/class-wc-helper-fee.php');
32
+require_once($wc_tests_framework_base_dir . 'helpers/class-wc-helper-shipping.php');
33
+require_once($wc_tests_framework_base_dir . 'helpers/class-wc-helper-customer.php');
34
+require_once($wc_tests_framework_base_dir . 'helpers/class-wc-helper-order.php');
Please login to merge, or discard this patch.
includes/class-wc-stripe-payment-tokens.php 1 patch
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -21,11 +21,11 @@  discard block
 block discarded – undo
21 21
 	public function __construct() {
22 22
 		self::$_this = $this;
23 23
 
24
-		add_filter( 'woocommerce_get_customer_payment_tokens', array( $this, 'woocommerce_get_customer_payment_tokens' ), 10, 3 );
25
-		add_filter( 'woocommerce_payment_methods_list_item', array( $this, 'get_account_saved_payment_methods_list_item_sepa' ), 10, 2 );
26
-		add_filter( 'woocommerce_get_credit_card_type_label', array( $this, 'normalize_sepa_label' ) );
27
-		add_action( 'woocommerce_payment_token_deleted', array( $this, 'woocommerce_payment_token_deleted' ), 10, 2 );
28
-		add_action( 'woocommerce_payment_token_set_default', array( $this, 'woocommerce_payment_token_set_default' ) );
24
+		add_filter('woocommerce_get_customer_payment_tokens', array($this, 'woocommerce_get_customer_payment_tokens'), 10, 3);
25
+		add_filter('woocommerce_payment_methods_list_item', array($this, 'get_account_saved_payment_methods_list_item_sepa'), 10, 2);
26
+		add_filter('woocommerce_get_credit_card_type_label', array($this, 'normalize_sepa_label'));
27
+		add_action('woocommerce_payment_token_deleted', array($this, 'woocommerce_payment_token_deleted'), 10, 2);
28
+		add_action('woocommerce_payment_token_set_default', array($this, 'woocommerce_payment_token_set_default'));
29 29
 	}
30 30
 
31 31
 	/**
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
 	 * @param string $label
47 47
 	 * @return string $label
48 48
 	 */
49
-	public function normalize_sepa_label( $label ) {
50
-		if ( 'sepa iban' === strtolower( $label ) ) {
49
+	public function normalize_sepa_label($label) {
50
+		if ('sepa iban' === strtolower($label)) {
51 51
 			return 'SEPA IBAN';
52 52
 		}
53 53
 
@@ -61,19 +61,19 @@  discard block
 block discarded – undo
61 61
 	 * @param int $customer_id
62 62
 	 * @return bool
63 63
 	 */
64
-	public static function customer_has_saved_methods( $customer_id ) {
65
-		$gateways = array( 'stripe', 'stripe_sepa' );
64
+	public static function customer_has_saved_methods($customer_id) {
65
+		$gateways = array('stripe', 'stripe_sepa');
66 66
 
67
-		if ( empty( $customer_id ) ) {
67
+		if (empty($customer_id)) {
68 68
 			return false;
69 69
 		}
70 70
 
71 71
 		$has_token = false;
72 72
 
73
-		foreach ( $gateways as $gateway ) {
74
-			$tokens = WC_Payment_Tokens::get_customer_tokens( $customer_id, $gateway );
73
+		foreach ($gateways as $gateway) {
74
+			$tokens = WC_Payment_Tokens::get_customer_tokens($customer_id, $gateway);
75 75
 
76
-			if ( ! empty( $tokens ) ) {
76
+			if ( ! empty($tokens)) {
77 77
 				$has_token = true;
78 78
 				break;
79 79
 			}
@@ -90,67 +90,67 @@  discard block
 block discarded – undo
90 90
 	 * @param array $tokens
91 91
 	 * @return array
92 92
 	 */
93
-	public function woocommerce_get_customer_payment_tokens( $tokens = array(), $customer_id, $gateway_id ) {
94
-		if ( is_user_logged_in() && class_exists( 'WC_Payment_Token_CC' ) ) {
93
+	public function woocommerce_get_customer_payment_tokens($tokens = array(), $customer_id, $gateway_id) {
94
+		if (is_user_logged_in() && class_exists('WC_Payment_Token_CC')) {
95 95
 			$stored_tokens = array();
96 96
 
97
-			foreach ( $tokens as $token ) {
97
+			foreach ($tokens as $token) {
98 98
 				$stored_tokens[] = $token->get_token();
99 99
 			}
100 100
 
101
-			if ( 'stripe' === $gateway_id ) {
102
-				$stripe_customer = new WC_Stripe_Customer( $customer_id );
101
+			if ('stripe' === $gateway_id) {
102
+				$stripe_customer = new WC_Stripe_Customer($customer_id);
103 103
 				$stripe_sources  = $stripe_customer->get_sources();
104 104
 
105
-				foreach ( $stripe_sources as $source ) {
106
-					if ( isset( $source->type ) && 'card' === $source->type ) {
107
-						if ( ! in_array( $source->id, $stored_tokens ) ) {
105
+				foreach ($stripe_sources as $source) {
106
+					if (isset($source->type) && 'card' === $source->type) {
107
+						if ( ! in_array($source->id, $stored_tokens)) {
108 108
 							$token = new WC_Payment_Token_CC();
109
-							$token->set_token( $source->id );
110
-							$token->set_gateway_id( 'stripe' );
111
-
112
-							if ( 'source' === $source->object && 'card' === $source->type ) {
113
-								$token->set_card_type( strtolower( $source->card->brand ) );
114
-								$token->set_last4( $source->card->last4 );
115
-								$token->set_expiry_month( $source->card->exp_month );
116
-								$token->set_expiry_year( $source->card->exp_year );
109
+							$token->set_token($source->id);
110
+							$token->set_gateway_id('stripe');
111
+
112
+							if ('source' === $source->object && 'card' === $source->type) {
113
+								$token->set_card_type(strtolower($source->card->brand));
114
+								$token->set_last4($source->card->last4);
115
+								$token->set_expiry_month($source->card->exp_month);
116
+								$token->set_expiry_year($source->card->exp_year);
117 117
 							}
118 118
 
119
-							$token->set_user_id( $customer_id );
119
+							$token->set_user_id($customer_id);
120 120
 							$token->save();
121
-							$tokens[ $token->get_id() ] = $token;
121
+							$tokens[$token->get_id()] = $token;
122 122
 						}
123 123
 					} else {
124
-						if ( ! in_array( $source->id, $stored_tokens ) && 'card' === $source->object ) {
124
+						if ( ! in_array($source->id, $stored_tokens) && 'card' === $source->object) {
125 125
 							$token = new WC_Payment_Token_CC();
126
-							$token->set_token( $source->id );
127
-							$token->set_gateway_id( 'stripe' );
128
-							$token->set_card_type( strtolower( $source->brand ) );
129
-							$token->set_last4( $source->last4 );
130
-							$token->set_expiry_month( $source->exp_month );
131
-							$token->set_expiry_year( $source->exp_year );
132
-							$token->set_user_id( $customer_id );
126
+							$token->set_token($source->id);
127
+							$token->set_gateway_id('stripe');
128
+							$token->set_card_type(strtolower($source->brand));
129
+							$token->set_last4($source->last4);
130
+							$token->set_expiry_month($source->exp_month);
131
+							$token->set_expiry_year($source->exp_year);
132
+							$token->set_user_id($customer_id);
133 133
 							$token->save();
134
-							$tokens[ $token->get_id() ] = $token;
134
+							$tokens[$token->get_id()] = $token;
135 135
 						}
136 136
 					}
137 137
 				}
138 138
 			}
139 139
 
140
-			if ( 'stripe_sepa' === $gateway_id ) {
141
-				$stripe_customer = new WC_Stripe_Customer( $customer_id );
140
+			if ('stripe_sepa' === $gateway_id) {
141
+				$stripe_customer = new WC_Stripe_Customer($customer_id);
142 142
 				$stripe_sources  = $stripe_customer->get_sources();
143 143
 
144
-				foreach ( $stripe_sources as $source ) {
145
-					if ( isset( $source->type ) && 'sepa_debit' === $source->type ) {
146
-						if ( ! in_array( $source->id, $stored_tokens ) ) {
144
+				foreach ($stripe_sources as $source) {
145
+					if (isset($source->type) && 'sepa_debit' === $source->type) {
146
+						if ( ! in_array($source->id, $stored_tokens)) {
147 147
 							$token = new WC_Payment_Token_SEPA();
148
-							$token->set_token( $source->id );
149
-							$token->set_gateway_id( 'stripe_sepa' );
150
-							$token->set_last4( $source->sepa_debit->last4 );
151
-							$token->set_user_id( $customer_id );
148
+							$token->set_token($source->id);
149
+							$token->set_gateway_id('stripe_sepa');
150
+							$token->set_last4($source->sepa_debit->last4);
151
+							$token->set_user_id($customer_id);
152 152
 							$token->save();
153
-							$tokens[ $token->get_id() ] = $token;
153
+							$tokens[$token->get_id()] = $token;
154 154
 						}
155 155
 					}
156 156
 				}
@@ -169,10 +169,10 @@  discard block
 block discarded – undo
169 169
 	 * @param  WC_Payment_Token $payment_token The payment token associated with this method entry
170 170
 	 * @return array                           Filtered item
171 171
 	 */
172
-	public function get_account_saved_payment_methods_list_item_sepa( $item, $payment_token ) {
173
-		if ( 'sepa' === strtolower( $payment_token->get_type() ) ) {
172
+	public function get_account_saved_payment_methods_list_item_sepa($item, $payment_token) {
173
+		if ('sepa' === strtolower($payment_token->get_type())) {
174 174
 			$item['method']['last4'] = $payment_token->get_last4();
175
-			$item['method']['brand'] = esc_html__( 'SEPA IBAN', 'woocommerce-gateway-stripe' );
175
+			$item['method']['brand'] = esc_html__('SEPA IBAN', 'woocommerce-gateway-stripe');
176 176
 		}
177 177
 
178 178
 		return $item;
@@ -184,10 +184,10 @@  discard block
 block discarded – undo
184 184
 	 * @since 3.1.0
185 185
 	 * @version 4.0.0
186 186
 	 */
187
-	public function woocommerce_payment_token_deleted( $token_id, $token ) {
188
-		if ( 'stripe' === $token->get_gateway_id() || 'stripe_sepa' === $token->get_gateway_id() ) {
189
-			$stripe_customer = new WC_Stripe_Customer( get_current_user_id() );
190
-			$stripe_customer->delete_source( $token->get_token() );
187
+	public function woocommerce_payment_token_deleted($token_id, $token) {
188
+		if ('stripe' === $token->get_gateway_id() || 'stripe_sepa' === $token->get_gateway_id()) {
189
+			$stripe_customer = new WC_Stripe_Customer(get_current_user_id());
190
+			$stripe_customer->delete_source($token->get_token());
191 191
 		}
192 192
 	}
193 193
 
@@ -197,12 +197,12 @@  discard block
 block discarded – undo
197 197
 	 * @since 3.1.0
198 198
 	 * @version 4.0.0
199 199
 	 */
200
-	public function woocommerce_payment_token_set_default( $token_id ) {
201
-		$token = WC_Payment_Tokens::get( $token_id );
200
+	public function woocommerce_payment_token_set_default($token_id) {
201
+		$token = WC_Payment_Tokens::get($token_id);
202 202
 
203
-		if ( 'stripe' === $token->get_gateway_id() || 'stripe_sepa' === $token->get_gateway_id() ) {
204
-			$stripe_customer = new WC_Stripe_Customer( get_current_user_id() );
205
-			$stripe_customer->set_default_source( $token->get_token() );
203
+		if ('stripe' === $token->get_gateway_id() || 'stripe_sepa' === $token->get_gateway_id()) {
204
+			$stripe_customer = new WC_Stripe_Customer(get_current_user_id());
205
+			$stripe_customer->set_default_source($token->get_token());
206 206
 		}
207 207
 	}
208 208
 }
Please login to merge, or discard this patch.