Skip to content

Commit

Permalink
chore: phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
Soare-Robert-Daniel committed Jul 15, 2024
1 parent 1966d52 commit e77b61f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions includes/admin/class-rop-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,12 @@ public function __construct( $plugin_name = '', $version = '' ) {
add_action( 'admin_notices', array( &$this, 'display_global_status_warning' ) );

$global_settings = new Rop_Global_Settings();
add_filter( 'rop_pro_plan', function() use ( $global_settings ) {
return $global_settings->license_type();
} );
add_filter(
'rop_pro_plan',
function() use ( $global_settings ) {
return $global_settings->license_type();
}
);
}


Expand Down

0 comments on commit e77b61f

Please sign in to comment.