Passed
Push — develop ( 44f8ef...36711b )
by Reüel
04:20
created
classes/Admin/GatewaySettings.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 		$classes = apply_filters( 'pronamic_pay_gateway_settings', array() );
40 40
 
41 41
 		foreach ( $classes as $class ) {
42
-			$this->settings[] = new $class();
42
+			$this->settings[ ] = new $class();
43 43
 		}
44 44
 	}
45 45
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 			$gateway_id = get_post_meta( $config_id, '_pronamic_gateway_id', true );
66 66
 
67 67
 			// Payment methods.
68
-			$sections['payment_methods'] = array(
68
+			$sections[ 'payment_methods' ] = array(
69 69
 				'title'       => __( 'Payment Methods', 'pronamic_ideal' ),
70 70
 				'methods'     => array(
71 71
 					$gateway_id,
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 		);
107 107
 
108 108
 		// Payment methods.
109
-		$fields[] = array(
109
+		$fields[ ] = array(
110 110
 			'section'  => 'payment_methods',
111 111
 			'type'     => 'html',
112 112
 			'callback' => array( $this, 'gateway_payment_methods' ),
@@ -149,6 +149,6 @@  discard block
 block discarded – undo
149 149
 
150 150
 		array_multisort( $sort, $sort_flags, $payment_methods );
151 151
 
152
-		require Plugin::$dirname . '/admin/meta-box-gateway-config-payment-methods.php';
152
+		require Plugin::$dirname.'/admin/meta-box-gateway-config-payment-methods.php';
153 153
 	}
154 154
 }
Please login to merge, or discard this patch.
classes/Admin/GatewayPostType.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -37,15 +37,15 @@  discard block
 block discarded – undo
37 37
 	public function __construct( AdminModule $admin ) {
38 38
 		$this->admin = $admin;
39 39
 
40
-		add_filter( 'manage_edit-' . self::POST_TYPE . '_columns', array( $this, 'edit_columns' ) );
40
+		add_filter( 'manage_edit-'.self::POST_TYPE.'_columns', array( $this, 'edit_columns' ) );
41 41
 
42
-		add_action( 'manage_' . self::POST_TYPE . '_posts_custom_column', array( $this, 'custom_columns' ), 10, 2 );
42
+		add_action( 'manage_'.self::POST_TYPE.'_posts_custom_column', array( $this, 'custom_columns' ), 10, 2 );
43 43
 
44 44
 		add_action( 'post_edit_form_tag', array( $this, 'post_edit_form_tag' ) );
45 45
 
46 46
 		add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
47 47
 
48
-		add_action( 'save_post_' . self::POST_TYPE, array( $this, 'save_post' ) );
48
+		add_action( 'save_post_'.self::POST_TYPE, array( $this, 'save_post' ) );
49 49
 
50 50
 		add_action( 'display_post_states', array( $this, 'display_post_states' ), 10, 2 );
51 51
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 							$name = __( 'Dashboard', 'pronamic_ideal' );
144 144
 						}
145 145
 
146
-						$content[] = sprintf(
146
+						$content[ ] = sprintf(
147 147
 							'<a href="%s" target="_blank">%s</a>',
148 148
 							esc_attr( $url ),
149 149
 							esc_html( ucfirst( $name ) )
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 		}
170 170
 
171 171
 		if ( intval( get_option( 'pronamic_pay_config_id' ) ) === $post->ID ) {
172
-			$post_states['pronamic_pay_config_default'] = __( 'Default', 'pronamic_ideal' );
172
+			$post_states[ 'pronamic_pay_config_default' ] = __( 'Default', 'pronamic_ideal' );
173 173
 		}
174 174
 
175 175
 		return $post_states;
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 	public function meta_box_config( $post ) {
231 231
 		wp_nonce_field( 'pronamic_pay_save_gateway', 'pronamic_pay_nonce' );
232 232
 
233
-		include Plugin::$dirname . '/admin/meta-box-gateway-config.php';
233
+		include Plugin::$dirname.'/admin/meta-box-gateway-config.php';
234 234
 	}
235 235
 
236 236
 	/**
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 	 * @param WP_Post $post The object for the current post/page.
240 240
 	 */
241 241
 	public function meta_box_test( $post ) {
242
-		include Plugin::$dirname . '/admin/meta-box-gateway-test.php';
242
+		include Plugin::$dirname.'/admin/meta-box-gateway-test.php';
243 243
 	}
244 244
 
245 245
 	/**
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
 	 */
250 250
 	public function save_post( $post_id ) {
251 251
 		// Nonce.
252
-		if ( ! filter_has_var( INPUT_POST, 'pronamic_pay_nonce' ) ) {
252
+		if ( !filter_has_var( INPUT_POST, 'pronamic_pay_nonce' ) ) {
253 253
 			return $post_id;
254 254
 		}
255 255
 
@@ -269,9 +269,9 @@  discard block
 block discarded – undo
269 269
 		);
270 270
 
271 271
 		foreach ( $fields as $field ) {
272
-			if ( isset( $field['meta_key'], $field['filter'] ) ) {
273
-				$name   = $field['meta_key'];
274
-				$filter = $field['filter'];
272
+			if ( isset( $field[ 'meta_key' ], $field[ 'filter' ] ) ) {
273
+				$name   = $field[ 'meta_key' ];
274
+				$filter = $field[ 'filter' ];
275 275
 
276 276
 				$definition[ $name ] = $filter;
277 277
 			}
@@ -279,28 +279,28 @@  discard block
 block discarded – undo
279 279
 
280 280
 		$data = filter_input_array( INPUT_POST, $definition );
281 281
 
282
-		if ( ! empty( $data['_pronamic_gateway_id'] ) ) {
282
+		if ( !empty( $data[ '_pronamic_gateway_id' ] ) ) {
283 283
 			$integrations = $this->admin->plugin->gateway_integrations;
284 284
 
285
-			if ( isset( $integrations[ $data['_pronamic_gateway_id'] ] ) ) {
286
-				$integration = $integrations[ $data['_pronamic_gateway_id'] ];
285
+			if ( isset( $integrations[ $data[ '_pronamic_gateway_id' ] ] ) ) {
286
+				$integration = $integrations[ $data[ '_pronamic_gateway_id' ] ];
287 287
 			}
288 288
 
289 289
 			if ( $integration ) {
290 290
 				$settings = $integration->get_settings();
291 291
 
292 292
 				foreach ( $fields as $field ) {
293
-					if ( isset( $field['default'], $field['meta_key'], $data[ $field['meta_key'] ] ) ) {
293
+					if ( isset( $field[ 'default' ], $field[ 'meta_key' ], $data[ $field[ 'meta_key' ] ] ) ) {
294 294
 						// Remove default value if not applicable to the selected gateway.
295
-						if ( isset( $field['methods'] ) ) {
296
-							$clean_default = array_intersect( $settings, $field['methods'] );
295
+						if ( isset( $field[ 'methods' ] ) ) {
296
+							$clean_default = array_intersect( $settings, $field[ 'methods' ] );
297 297
 
298 298
 							if ( empty( $clean_default ) ) {
299
-								$meta_value = get_post_meta( $post_id, $field['meta_key'], true );
299
+								$meta_value = get_post_meta( $post_id, $field[ 'meta_key' ], true );
300 300
 
301 301
 								// Only remove value if not saved before.
302 302
 								if ( empty( $meta_value ) ) {
303
-									$data[ $field['meta_key'] ] = null;
303
+									$data[ $field[ 'meta_key' ] ] = null;
304 304
 
305 305
 									continue;
306 306
 								}
@@ -308,13 +308,13 @@  discard block
 block discarded – undo
308 308
 						}
309 309
 
310 310
 						// Set the default value if empty.
311
-						if ( empty( $data[ $field['meta_key'] ] ) ) {
312
-							$default = $field['default'];
311
+						if ( empty( $data[ $field[ 'meta_key' ] ] ) ) {
312
+							$default = $field[ 'default' ];
313 313
 
314
-							if ( is_array( $default ) && 2 === count( $default ) && Util::class_method_exists( $default[0], $default[1] ) ) {
315
-								$data[ $field['meta_key'] ] = call_user_func( $default, $field );
314
+							if ( is_array( $default ) && 2 === count( $default ) && Util::class_method_exists( $default[ 0 ], $default[ 1 ] ) ) {
315
+								$data[ $field[ 'meta_key' ] ] = call_user_func( $default, $field );
316 316
 							} else {
317
-								$data[ $field['meta_key'] ] = $default;
317
+								$data[ $field[ 'meta_key' ] ] = $default;
318 318
 							}
319 319
 						}
320 320
 					}
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
 				// Filter data through gateway integration settings.
324 324
 				$settings_classes = $integration->get_settings_class();
325 325
 
326
-				if ( ! is_array( $settings_classes ) ) {
326
+				if ( !is_array( $settings_classes ) ) {
327 327
 					$settings_classes = array( $settings_classes );
328 328
 				}
329 329
 
@@ -339,8 +339,8 @@  discard block
 block discarded – undo
339 339
 		pronamic_pay_update_post_meta_data( $post_id, $data );
340 340
 
341 341
 		// Transient.
342
-		delete_transient( 'pronamic_pay_issuers_' . $post_id );
343
-		delete_transient( 'pronamic_gateway_payment_methods_' . $post_id );
342
+		delete_transient( 'pronamic_pay_issuers_'.$post_id );
343
+		delete_transient( 'pronamic_gateway_payment_methods_'.$post_id );
344 344
 
345 345
 		PaymentMethods::update_active_payment_methods();
346 346
 	}
@@ -364,14 +364,14 @@  discard block
 block discarded – undo
364 364
 			0  => '', // Unused. Messages start at index 1.
365 365
 			1  => __( 'Configuration updated.', 'pronamic_ideal' ),
366 366
 			// @see https://translate.wordpress.org/projects/wp/4.4.x/admin/nl/default?filters[status]=either&filters[original_id]=2352799&filters[translation_id]=37947229
367
-			2  => $messages['post'][2],
367
+			2  => $messages[ 'post' ][ 2 ],
368 368
 			// @see https://translate.wordpress.org/projects/wp/4.4.x/admin/nl/default?filters[status]=either&filters[original_id]=2352800&filters[translation_id]=37947870
369
-			3  => $messages['post'][3],
369
+			3  => $messages[ 'post' ][ 3 ],
370 370
 			// @see https://translate.wordpress.org/projects/wp/4.4.x/admin/nl/default?filters[status]=either&filters[original_id]=2352798&filters[translation_id]=37947230
371 371
 			4  => __( 'Configuration updated.', 'pronamic_ideal' ),
372 372
 			// @see https://translate.wordpress.org/projects/wp/4.4.x/admin/nl/default?filters[status]=either&filters[original_id]=2352801&filters[translation_id]=37947231
373 373
 			// translators: %s: date and time of the revision.
374
-			5  => isset( $_GET['revision'] ) ? sprintf( __( 'Configuration restored to revision from %s.', 'pronamic_ideal' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, // WPCS: CSRF ok.
374
+			5  => isset( $_GET[ 'revision' ] ) ? sprintf( __( 'Configuration restored to revision from %s.', 'pronamic_ideal' ), wp_post_revision_title( (int) $_GET[ 'revision' ], false ) ) : false, // WPCS: CSRF ok.
375 375
 			// @see https://translate.wordpress.org/projects/wp/4.4.x/admin/nl/default?filters[status]=either&filters[original_id]=2352802&filters[translation_id]=37949178
376 376
 			6  => __( 'Configuration published.', 'pronamic_ideal' ),
377 377
 			// @see https://translate.wordpress.org/projects/wp/4.4.x/admin/nl/default?filters[status]=either&filters[original_id]=2352803&filters[translation_id]=37947232
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
 			// @see https://translate.wordpress.org/projects/wp/4.4.x/admin/nl/default?filters[status]=either&filters[original_id]=2352804&filters[translation_id]=37949303
380 380
 			8  => __( 'Configuration submitted.', 'pronamic_ideal' ),
381 381
 			// @see https://translate.wordpress.org/projects/wp/4.4.x/admin/nl/default?filters[status]=either&filters[original_id]=2352805&filters[translation_id]=37949302
382
-			9  => sprintf( __( 'Configuration scheduled for: %s.', 'pronamic_ideal' ), '<strong>' . $scheduled_date . '</strong>' ),
382
+			9  => sprintf( __( 'Configuration scheduled for: %s.', 'pronamic_ideal' ), '<strong>'.$scheduled_date.'</strong>' ),
383 383
 			// @https://translate.wordpress.org/projects/wp/4.4.x/admin/nl/default?filters[status]=either&filters[original_id]=2352806&filters[translation_id]=37949301
384 384
 			10 => __( 'Configuration draft updated.', 'pronamic_ideal' ),
385 385
 		);
Please login to merge, or discard this patch.
admin/meta-box-gateway-config-payment-methods.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,14 +19,14 @@
 block discarded – undo
19 19
 	foreach ( $payment_methods as $payment_method => $details ) {
20 20
 		$class = $payment_method;
21 21
 
22
-		if ( $details['available'] ) {
22
+		if ( $details[ 'available' ] ) {
23 23
 			$class .= ' available';
24 24
 		}
25 25
 
26 26
 		printf(
27 27
 			'<li class="%1$s"><span class="pronamic-pay-icon pronamic-pay-icon-completed"></span> %2$s</li>',
28 28
 			esc_attr( $class ),
29
-			esc_html( $details['name'] )
29
+			esc_html( $details[ 'name' ] )
30 30
 		);
31 31
 	}
32 32
 
Please login to merge, or discard this patch.
admin/meta-box-gateway-test.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 		// Payment method input HTML.
36 36
 		$html = $gateway->get_input_html();
37 37
 
38
-		if ( ! empty( $html ) ) {
38
+		if ( !empty( $html ) ) {
39 39
 			$inputs[ $payment_method ] = array(
40 40
 				'label' => $method_name,
41 41
 				'html'  => $html,
@@ -44,10 +44,10 @@  discard block
 block discarded – undo
44 44
 	}
45 45
 
46 46
 	if ( $gateway->has_error() ) {
47
-		$pronamic_ideal_errors[] = $gateway->get_error();
47
+		$pronamic_ideal_errors[ ] = $gateway->get_error();
48 48
 	}
49 49
 
50
-	include Plugin::$dirname . '/views/errors.php';
50
+	include Plugin::$dirname.'/views/errors.php';
51 51
 
52 52
 	?>
53 53
 	<table class="form-table">
@@ -79,12 +79,12 @@  discard block
 block discarded – undo
79 79
 
80 80
 			<tr class="pronamic-pay-cloack pronamic-pay-test-payment-method <?php echo esc_attr( $method ); ?>">
81 81
 				<th scope="row">
82
-					<?php echo esc_html( $input['label'] ); ?>
82
+					<?php echo esc_html( $input[ 'label' ] ); ?>
83 83
 				</th>
84 84
 				<td>
85 85
 					<?php
86 86
 
87
-					echo $input['html']; // WPCS: XSS ok.
87
+					echo $input[ 'html' ]; // WPCS: XSS ok.
88 88
 
89 89
 					?>
90 90
 				</td>
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
 	<?php
297 297
 
298 298
 	if ( $is_ideal || $gateway instanceof \Pronamic\WordPress\Pay\Gateways\OmniKassa2\Gateway ) {
299
-		include Plugin::$dirname . '/views/ideal-test-cases.php';
299
+		include Plugin::$dirname.'/views/ideal-test-cases.php';
300 300
 	}
301 301
 } else {
302 302
 	printf(
Please login to merge, or discard this patch.