Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
TorbenLundsgaard committed Sep 25, 2023
1 parent 91ab178 commit 47a469b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Installation/PluginDataImport.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public function get_all(): array {
\delete_transient( 'gtmkit_first_install' );

$plugin_data = [
'firstInstall' => $first_install,
'importAvailable' => false,
'firstInstall' => $first_install,
'importAvailable' => false,
'woocommerce_integration' => $this->is_plugin_active( 'woocommerce/woocommerce.php' ),
'cf7_integration' => $this->is_plugin_active( 'contact-form-7/wp-contact-form-7.php' ),
'edd_integration' => ( $this->is_plugin_active( 'easy-digital-downloads/easy-digital-downloads.php' ) || $this->is_plugin_active( 'easy-digital-downloads-pro/easy-digital-downloads.php' ) ),
Expand All @@ -42,7 +42,7 @@ public function get_all(): array {
$settings = $this->get( $plugin );
if ( ! empty( $settings ) ) {
$plugin_data['import_data'][ $plugin ] = $settings;
$plugin_data['importAvailable'] = true;
$plugin_data['importAvailable'] = true;
}
}

Expand Down

0 comments on commit 47a469b

Please sign in to comment.