Skip to content

Commit 89ccf11

Browse files
committed
updated space identations to tabs
1 parent 3835b75 commit 89ccf11

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

class-plugin-update.php

+17-17
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
*/
1515
class Plugin_Updates {
1616

17-
/**
18-
* Setup action & filter hooks.
19-
*/
20-
public function __construct() {
21-
add_action( 'in_plugin_update_message-jwt-auth/jwt-auth.php' , array( $this , 'display_update_warnings' ) , 10 , 2 );
17+
/**
18+
* Setup action & filter hooks.
19+
*/
20+
public function __construct() {
21+
add_action( 'in_plugin_update_message-jwt-auth/jwt-auth.php' , array( $this , 'display_update_warnings' ) , 10 , 2 );
2222
add_action( 'admin_notices' , array( $this , 'display_future_update_warning' ) );
2323
add_action( 'admin_init', array( 'PAnD', 'init' ) );
24-
}
24+
}
2525

2626
/**
2727
* Display update warnings for users updating from 2.x to 3.x.
@@ -59,24 +59,24 @@ public function display_update_warnings( $plugin_data , $response ) {
5959

6060
}
6161

62-
public function display_future_update_warning() {
62+
public function display_future_update_warning() {
6363

64-
if ( ! \PAnD::is_admin_notice_active( 'jwt-v3-update-warning-1' ) ) {
65-
return;
66-
}
64+
if ( ! \PAnD::is_admin_notice_active( 'jwt-v3-update-warning-1' ) ) {
65+
return;
66+
}
6767

68-
ob_start(); ?>
68+
ob_start(); ?>
6969

70-
<div data-dismissible="jwt-v3-update-warning-1" class="updated notice notice-warning is-dismissible">
70+
<div data-dismissible="jwt-v3-update-warning-1" class="updated notice notice-warning is-dismissible">
7171
<div style="font-weight: normal; overflow:auto">
7272
<p><?php echo __( 'Important! An upcoming version of the JWT Auth plugin contains major new features that will change the behaviour of your site.', 'jwt-auth' ); ?>
7373
<?php echo __( 'More information can be found on <a href="https://wordpress.org/plugins/jwt-auth/" target="_blank">the plugin page on WordPress.org</a>.', 'jwt-auth' ); ?></p>
7474
</div>
75-
</div>
75+
</div>
7676

77-
<?php
78-
$output = ob_get_clean();
79-
echo $output;
77+
<?php
78+
$output = ob_get_clean();
79+
echo $output;
8080

81-
}
81+
}
8282
}

0 commit comments

Comments
 (0)