Passed
Push — develop ( 83898a...fd8230 )
by Remco
03:45
created
src/readme-md/README.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 [![Code Intelligence Status](https://scrutinizer-ci.com/g/pronamic/wp-pronamic-ideal/badges/code-intelligence.svg?b=develop)](https://scrutinizer-ci.com/code-intelligence)
21 21
 [![codecov](https://codecov.io/gh/pronamic/wp-pronamic-ideal/branch/develop/graph/badge.svg)](https://codecov.io/gh/pronamic/wp-pronamic-ideal)
22 22
 
23
-<?php include __DIR__ . '/../general/description-short.php'; ?>
23
+<?php include __DIR__.'/../general/description-short.php'; ?>
24 24
 
25 25
 
26 26
 ## Gateways
@@ -43,4 +43,4 @@  discard block
 block discarded – undo
43 43
 
44 44
 ## Links
45 45
 
46
-<?php include __DIR__ . '/../general/links.php'; ?>
46
+<?php include __DIR__.'/../general/links.php'; ?>
Please login to merge, or discard this patch.
admin/tab-system_status.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 				$timestamp = wp_next_scheduled( 'pronamic_pay_license_check' );
59 59
 
60 60
 				if ( false !== $timestamp ) {
61
-					$date = new \Pronamic\WordPress\Pay\DateTime( '@' . $timestamp, new DateTimeZone( 'UTC' ) );
61
+					$date = new \Pronamic\WordPress\Pay\DateTime( '@'.$timestamp, new DateTimeZone( 'UTC' ) );
62 62
 
63 63
 					echo esc_html( $date->format_i18n() );
64 64
 				} else {
@@ -245,8 +245,8 @@  discard block
 block discarded – undo
245 245
 					$version = curl_version();
246 246
 					// @codingStandardsIgnoreEnd
247 247
 
248
-					if ( isset( $version['version'] ) ) {
249
-						echo esc_html( $version['version'] );
248
+					if ( isset( $version[ 'version' ] ) ) {
249
+						echo esc_html( $version[ 'version' ] );
250 250
 					}
251 251
 				}
252 252
 
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
 
337 337
 $data = get_transient( 'pronamic_pay_ideal_issuers_status' );
338 338
 
339
-if ( ! $data ) {
339
+if ( !$data ) {
340 340
 
341 341
 	$url = 'http://www.ideal-status.nl/static/issuers_current.json';
342 342
 
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 
345 345
 	$status_data = null;
346 346
 
347
-	if ( ! is_wp_error( $response ) ) {
347
+	if ( !is_wp_error( $response ) ) {
348 348
 		if ( 200 === wp_remote_retrieve_response_code( $response ) ) {
349 349
 			$body = wp_remote_retrieve_body( $response );
350 350
 
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
 
410 410
 			<?php foreach ( $data as $status ) : ?>
411 411
 
412
-				<?php $alternate = ! $alternate; ?>
412
+				<?php $alternate = !$alternate; ?>
413 413
 
414 414
 				<tr<?php if ( $alternate ) : ?> class="alternate"<?php endif; ?>>
415 415
 					<td>
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
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 	// Payment method input HTML.
44 44
 	$html = $gateway->get_input_html();
45 45
 
46
-	if ( ! empty( $html ) ) {
46
+	if ( !empty( $html ) ) {
47 47
 		$inputs[ $payment_method ] = array(
48 48
 			'label' => $method_name,
49 49
 			'html'  => $html,
@@ -52,10 +52,10 @@  discard block
 block discarded – undo
52 52
 }
53 53
 
54 54
 if ( $gateway->has_error() ) {
55
-	$pronamic_ideal_errors[] = $gateway->get_error();
55
+	$pronamic_ideal_errors[ ] = $gateway->get_error();
56 56
 }
57 57
 
58
-include Plugin::$dirname . '/views/errors.php';
58
+include Plugin::$dirname.'/views/errors.php';
59 59
 
60 60
 ?>
61 61
 <table class="form-table">
@@ -87,12 +87,12 @@  discard block
 block discarded – undo
87 87
 
88 88
 		<tr class="pronamic-pay-cloack pronamic-pay-test-payment-method <?php echo esc_attr( $method ); ?>">
89 89
 			<th scope="row">
90
-				<?php echo esc_html( $input['label'] ); ?>
90
+				<?php echo esc_html( $input[ 'label' ] ); ?>
91 91
 			</th>
92 92
 			<td>
93 93
 				<?php
94 94
 
95
-				echo $input['html']; // WPCS: XSS ok.
95
+				echo $input[ 'html' ]; // WPCS: XSS ok.
96 96
 
97 97
 				?>
98 98
 			</td>
@@ -304,5 +304,5 @@  discard block
 block discarded – undo
304 304
 <?php
305 305
 
306 306
 if ( $is_ideal || $gateway instanceof \Pronamic\WordPress\Pay\Gateways\OmniKassa2\Gateway ) {
307
-	include Plugin::$dirname . '/views/ideal-test-cases.php';
307
+	include Plugin::$dirname.'/views/ideal-test-cases.php';
308 308
 }
Please login to merge, or discard this patch.