Passed
Push — develop ( 6715ca...5be752 )
by Remco
03:51
created
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.