@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | [](https://scrutinizer-ci.com/code-intelligence) |
21 | 21 | [](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 |
||
43 | 43 | |
44 | 44 | ## Links |
45 | 45 | |
46 | -<?php include __DIR__ . '/../general/links.php'; ?> |
|
46 | +<?php include __DIR__.'/../general/links.php'; ?> |
@@ -58,7 +58,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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> |
@@ -43,7 +43,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | } |