@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | $config_ids = $wpdb->get_results( $query ); // WPCS: unprepared SQL ok. |
230 | 230 | |
231 | 231 | foreach ( $config_ids as $config_id ) { |
232 | - $config_ids_map[ $config_id->id ] = $config_id->post_id; |
|
232 | + $config_ids_map[$config_id->id] = $config_id->post_id; |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | /** |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | $feed_meta = json_decode( $feed->meta, true ); |
302 | 302 | |
303 | 303 | $meta['form_id'] = $feed->form_id; |
304 | - $meta['config_id'] = @$config_ids_map[ $feed->configuration_id ]; |
|
304 | + $meta['config_id'] = @$config_ids_map[$feed->configuration_id]; |
|
305 | 305 | $meta['is_active'] = $feed->is_active; |
306 | 306 | $meta['transaction_description'] = @$feed_meta['transactionDescription']; |
307 | 307 | $meta['delay_notification_ids'] = @$feed_meta['delayNotificationIds']; |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | |
416 | 416 | // Meta |
417 | 417 | $meta = array( |
418 | - 'config_id' => @$config_ids_map[ $payment->configuration_id ], |
|
418 | + 'config_id' => @$config_ids_map[$payment->configuration_id], |
|
419 | 419 | 'purchase_id' => $payment->purchase_id, |
420 | 420 | 'transaction_id' => $payment->transaction_id, |
421 | 421 | 'currency' => $payment->currency, |
@@ -474,7 +474,7 @@ discard block |
||
474 | 474 | $value = get_option( $key_old ); |
475 | 475 | |
476 | 476 | if ( ! empty( $value ) ) { |
477 | - $value_new = @$config_ids_map[ $value ]; |
|
477 | + $value_new = @$config_ids_map[$value]; |
|
478 | 478 | |
479 | 479 | update_option( $key_new, $value_new ); |
480 | 480 | } |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | if ( is_array( $settings ) && isset( $settings['pronamic_shopp_ideal_configuration'] ) ) { |
501 | 501 | $value = $settings['pronamic_shopp_ideal_configuration']; |
502 | 502 | |
503 | - $settings['config_id'] = @$config_ids_map[ $value ]; |
|
503 | + $settings['config_id'] = @$config_ids_map[$value]; |
|
504 | 504 | |
505 | 505 | $wpdb->update( |
506 | 506 | $shopp_meta_table, |
@@ -522,7 +522,7 @@ discard block |
||
522 | 522 | if ( is_array( $settings ) && isset( $settings['configuration_id'] ) ) { |
523 | 523 | $value = $settings['configuration_id']; |
524 | 524 | |
525 | - $settings['config_id'] = @$config_ids_map[ $value ]; |
|
525 | + $settings['config_id'] = @$config_ids_map[$value]; |
|
526 | 526 | |
527 | 527 | unset( $settings['configuration_id'] ); |
528 | 528 |
@@ -646,8 +646,8 @@ discard block |
||
646 | 646 | <td> |
647 | 647 | <?php |
648 | 648 | |
649 | - if ( isset( $source['components'][ $key ] ) ) { |
|
650 | - $component = $source['components'][ $key ]; |
|
649 | + if ( isset( $source['components'][$key] ) ) { |
|
650 | + $component = $source['components'][$key]; |
|
651 | 651 | |
652 | 652 | $name = null; |
653 | 653 | $tip = null; |
@@ -655,7 +655,7 @@ discard block |
||
655 | 655 | $warning = null; |
656 | 656 | |
657 | 657 | if ( is_array( $component ) ) { |
658 | - $name = $component['name']; |
|
658 | + $name = $component['name']; |
|
659 | 659 | |
660 | 660 | if ( array_key_exists( 'description', $component ) ) { |
661 | 661 | $description = $component['description']; |
@@ -504,8 +504,8 @@ |
||
504 | 504 | <td> |
505 | 505 | <?php |
506 | 506 | |
507 | - if ( isset( $source['components'][ $key ] ) ) { |
|
508 | - $component = $source['components'][ $key ]; |
|
507 | + if ( isset( $source['components'][$key] ) ) { |
|
508 | + $component = $source['components'][$key]; |
|
509 | 509 | |
510 | 510 | $name = null; |
511 | 511 | $tip = null; |
@@ -17,7 +17,7 @@ |
||
17 | 17 | */ |
18 | 18 | \WP_CLI::add_hook( |
19 | 19 | 'after_add_command:i18n make-pot', |
20 | - function () { |
|
20 | + function() { |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * Title: Make pot command. |
@@ -13,24 +13,24 @@ discard block |
||
13 | 13 | |
14 | 14 | $providers = array(); |
15 | 15 | foreach ( $data as $provider ) { |
16 | - $providers[ $provider->slug ] = $provider; |
|
16 | + $providers[$provider->slug] = $provider; |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | $data = file_get_contents( __DIR__ . '/../gateways.json' ); |
20 | 20 | $gateways = json_decode( $data ); |
21 | 21 | |
22 | 22 | foreach ( $gateways as $gateway ) { |
23 | - if ( ! isset( $providers[ $gateway->provider ] ) ) { |
|
23 | + if ( ! isset( $providers[$gateway->provider] ) ) { |
|
24 | 24 | continue; |
25 | 25 | } |
26 | 26 | |
27 | - $provider = $providers[ $gateway->provider ]; |
|
27 | + $provider = $providers[$gateway->provider]; |
|
28 | 28 | |
29 | 29 | if ( ! isset( $provider->gateways ) ) { |
30 | 30 | $provider->gateways = array(); |
31 | 31 | } |
32 | 32 | |
33 | - $provider->gateways[ $gateway->slug ] = $gateway; |
|
33 | + $provider->gateways[$gateway->slug] = $gateway; |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | ?> |
@@ -39,8 +39,8 @@ discard block |
||
39 | 39 | <?php foreach ( $gateways as $gateway ) : ?> |
40 | 40 | | <?php |
41 | 41 | |
42 | -if ( isset( $gateway->provider, $providers[ $gateway->provider ] ) ) { |
|
43 | - $provider = $providers[ $gateway->provider ]; |
|
42 | +if ( isset( $gateway->provider, $providers[$gateway->provider] ) ) { |
|
43 | + $provider = $providers[$gateway->provider]; |
|
44 | 44 | |
45 | 45 | if ( isset( $provider->url ) ) { |
46 | 46 | printf( '[%s](%s)', $provider->name, $provider->url ); |
@@ -35,13 +35,13 @@ |
||
35 | 35 | $files = require $file; |
36 | 36 | |
37 | 37 | foreach ( $files as $identifier => $filepath ) { |
38 | - if ( ! empty( $GLOBALS['__composer_autoload_files'][ $identifier ] ) ) { |
|
38 | + if ( ! empty( $GLOBALS['__composer_autoload_files'][$identifier] ) ) { |
|
39 | 39 | continue; |
40 | 40 | } |
41 | 41 | |
42 | 42 | require $filepath; |
43 | 43 | |
44 | - $GLOBALS['__composer_autoload_files'][ $identifier ] = true; |
|
44 | + $GLOBALS['__composer_autoload_files'][$identifier] = true; |
|
45 | 45 | } |
46 | 46 | } |
47 | 47 | } |
@@ -65,7 +65,7 @@ |
||
65 | 65 | echo "\r\n"; |
66 | 66 | |
67 | 67 | // Limit to last 5 logs. |
68 | - $i++; |
|
68 | + $i ++; |
|
69 | 69 | |
70 | 70 | if ( $i > 5 ) { |
71 | 71 | break; |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | $provider->gateways = array(); |
20 | 20 | } |
21 | 21 | |
22 | - $providers[ $provider->slug ] = $provider; |
|
22 | + $providers[$provider->slug] = $provider; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | // Gateways. |
@@ -31,13 +31,13 @@ discard block |
||
31 | 31 | continue; |
32 | 32 | } |
33 | 33 | |
34 | - if ( ! isset( $providers[ $gateway->provider ] ) ) { |
|
34 | + if ( ! isset( $providers[$gateway->provider] ) ) { |
|
35 | 35 | continue; |
36 | 36 | } |
37 | 37 | |
38 | - $provider = $providers[ $gateway->provider ]; |
|
38 | + $provider = $providers[$gateway->provider]; |
|
39 | 39 | |
40 | - $provider->gateways[ $gateway->slug ] = $gateway; |
|
40 | + $provider->gateways[$gateway->slug] = $gateway; |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | // Print gateways. |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | $providers = array(); |
16 | 16 | |
17 | 17 | foreach ( $data as $provider ) { |
18 | - $providers[ $provider->slug ] = $provider; |
|
18 | + $providers[$provider->slug] = $provider; |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | // Gateways. |
@@ -23,17 +23,17 @@ discard block |
||
23 | 23 | $gateways = json_decode( $data ); |
24 | 24 | |
25 | 25 | foreach ( $gateways as $gateway ) { |
26 | - if ( ! isset( $providers[ $gateway->provider ] ) ) { |
|
26 | + if ( ! isset( $providers[$gateway->provider] ) ) { |
|
27 | 27 | continue; |
28 | 28 | } |
29 | 29 | |
30 | - $provider = $providers[ $gateway->provider ]; |
|
30 | + $provider = $providers[$gateway->provider]; |
|
31 | 31 | |
32 | 32 | if ( ! isset( $provider->gateways ) ) { |
33 | 33 | $provider->gateways = array(); |
34 | 34 | } |
35 | 35 | |
36 | - $provider->gateways[ $gateway->slug ] = $gateway; |
|
36 | + $provider->gateways[$gateway->slug] = $gateway; |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | // Print gateways. |