Skip to content

Commit

Permalink
fixed - spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveJonesDev committed Dec 12, 2023
1 parent b0fdfee commit 1335b11
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions includes/classes/class-ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ public function __construct() {
* @return void
*/
public function init_hooks() {
add_action( 'wp_ajax_edac_summary_ajax', array( $this, 'summary' ) );
add_action( 'wp_ajax_edac_details_ajax', array( $this, 'details' ) );
add_action( 'wp_ajax_edac_readability_ajax', array( $this, 'readability' ) );
add_action( 'wp_ajax_edac_insert_ignore_data', array( $this, 'add_ignore' ) );
add_action( 'wp_ajax_edac_update_simplified_summary', array( $this, 'simplified_summary' ) );
add_action( 'wp_ajax_edac_dismiss_welcome_cta_ajax', array( $this, 'dismiss_welcome_cta' ) );
add_action( 'wp_ajax_edac_dismiss_dashboard_cta_ajax', array( $this, 'dismiss_dashboard_cta' ) );
add_action( 'wp_ajax_edac_email_opt_in_ajax', array( $this, 'email_opt_in' ) );
add_action( 'wp_ajax_edac_summary_ajax', array( $this, 'summary' ) );

Check failure on line 27 in includes/classes/class-ajax.php

View workflow job for this annotation

GitHub Actions / Check code style

Expected 1 space after comma in argument list; 15 found
add_action( 'wp_ajax_edac_details_ajax', array( $this, 'details' ) );

Check failure on line 28 in includes/classes/class-ajax.php

View workflow job for this annotation

GitHub Actions / Check code style

Expected 1 space after comma in argument list; 15 found
add_action( 'wp_ajax_edac_readability_ajax', array( $this, 'readability' ) );

Check failure on line 29 in includes/classes/class-ajax.php

View workflow job for this annotation

GitHub Actions / Check code style

Expected 1 space after comma in argument list; 11 found
add_action( 'wp_ajax_edac_insert_ignore_data', array( $this, 'add_ignore' ) );

Check failure on line 30 in includes/classes/class-ajax.php

View workflow job for this annotation

GitHub Actions / Check code style

Expected 1 space after comma in argument list; 9 found
add_action( 'wp_ajax_edac_update_simplified_summary', array( $this, 'simplified_summary' ) );

Check failure on line 31 in includes/classes/class-ajax.php

View workflow job for this annotation

GitHub Actions / Check code style

Expected 1 space after comma in argument list; 2 found
add_action( 'wp_ajax_edac_dismiss_welcome_cta_ajax', array( $this, 'dismiss_welcome_cta' ) );

Check failure on line 32 in includes/classes/class-ajax.php

View workflow job for this annotation

GitHub Actions / Check code style

Expected 1 space after comma in argument list; 3 found
add_action( 'wp_ajax_edac_dismiss_dashboard_cta_ajax', array( $this, 'dismiss_dashboard_cta' ) );
add_action( 'wp_ajax_edac_email_opt_in_ajax', array( $this, 'email_opt_in' ) );

Check failure on line 34 in includes/classes/class-ajax.php

View workflow job for this annotation

GitHub Actions / Check code style

Expected 1 space after comma in argument list; 10 found
}

/**
Expand Down

0 comments on commit 1335b11

Please sign in to comment.