classes/class-alert.php

Summary

Maintainability
A
1 hr
Test Coverage
F
53%

Function update_record_triggered_alerts has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public static function update_record_triggered_alerts( $record, $alert_slug, $alert_meta ) {
        if ( ! is_string( $alert_slug ) ) {
            return false;
        }

Severity: Minor
Found in classes/class-alert.php - About 35 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function get_single_alert_setting_from_record has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public function get_single_alert_setting_from_record( $record, $alert_slug, $setting, $default = false ) {
        if ( ! is_object( $record ) || ! is_string( $alert_slug ) || ! is_string( $setting ) ) {
            return false;
        }
        $record           = new Record( $record );
Severity: Minor
Found in classes/class-alert.php - About 35 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Avoid too many return statements within this method.
Open

        return $value;
Severity: Major
Found in classes/class-alert.php - About 30 mins to fix

    There are no issues that match your filters.

    Category
    Status