woothemes/woocommerce

View on GitHub
includes/admin/class-wc-admin-attributes.php

Summary

Maintainability
D
2 days
Test Coverage

Method add_attribute has 150 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static function add_attribute() {
        ?>
        <div class="wrap woocommerce">
            <h1><?php echo esc_html( get_admin_page_title() ); ?></h1>

Severity: Major
Found in includes/admin/class-wc-admin-attributes.php - About 6 hrs to fix

    File class-wc-admin-attributes.php has 352 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * Attributes Page
     *
     * The attributes section lets users add custom attributes to assign to products - they can also be used in the "Filter Products by Attribute" widget.
    Severity: Minor
    Found in includes/admin/class-wc-admin-attributes.php - About 4 hrs to fix

      Method edit_attribute has 104 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function edit_attribute() {
              global $wpdb;
      
              $edit = isset( $_GET['edit'] ) ? absint( $_GET['edit'] ) : 0;
      
      
      Severity: Major
      Found in includes/admin/class-wc-admin-attributes.php - About 4 hrs to fix

        Function add_attribute has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function add_attribute() {
                ?>
                <div class="wrap woocommerce">
                    <h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
        
        
        Severity: Minor
        Found in includes/admin/class-wc-admin-attributes.php - About 3 hrs 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 output has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function output() {
                $result = '';
                $action = '';
        
                // Action to perform: add, edit, delete or none.
        Severity: Minor
        Found in includes/admin/class-wc-admin-attributes.php - About 1 hr 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

        Method output has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public static function output() {
                $result = '';
                $action = '';
        
                // Action to perform: add, edit, delete or none.
        Severity: Minor
        Found in includes/admin/class-wc-admin-attributes.php - About 1 hr to fix

          Function edit_attribute has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function edit_attribute() {
                  global $wpdb;
          
                  $edit = isset( $_GET['edit'] ) ? absint( $_GET['edit'] ) : 0;
          
          
          Severity: Minor
          Found in includes/admin/class-wc-admin-attributes.php - About 55 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

          There are no issues that match your filters.

          Category
          Status