Skip to content

Commit

Permalink
Linting/spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHenryIE committed Feb 16, 2024
1 parent 81d55d1 commit 11ce728
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions includes/HiiveConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ public function get_core_data() {
$data = array(
'brand' => sanitize_title( $container->plugin()->brand ),
'cache_level' => intval( get_option( 'newfold_cache_level', 2 ) ),
'cloudflare' => get_option( 'newfold_cloudflare_enabled', false ),
'data' => defined('NFD_DATA_MODULE_VERSION' ) ? constant( 'NFD_DATA_MODULE_VERSION' ) : '0.0',
'cloudflare' => get_option( 'newfold_cloudflare_enabled', false ),
'data' => defined( 'NFD_DATA_MODULE_VERSION' ) ? constant( 'NFD_DATA_MODULE_VERSION' ) : '0.0',
'email' => get_option( 'admin_email' ),
'hostname' => gethostname(),
'mysql' => $wpdb->db_version(),
Expand All @@ -279,7 +279,7 @@ public function get_core_data() {
'url' => get_site_url(),
'username' => get_current_user(),
'wp' => $wp_version,
'server_path' => defined('ABSPATH' ) ? constant( 'ABSPATH' ) : '',
'server_path' => defined( 'ABSPATH' ) ? constant( 'ABSPATH' ) : '',
);

return apply_filters( 'newfold_wp_data_module_core_data_filter', $data );
Expand Down

0 comments on commit 11ce728

Please sign in to comment.