woothemes/woocommerce

View on GitHub
includes/admin/class-wc-admin-log-table-list.php

Summary

Maintainability
A
3 hrs
Test Coverage

Method level_dropdown has 51 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function level_dropdown() {

        $levels = array(
            array(
                'value' => WC_Log_Levels::EMERGENCY,
Severity: Major
Found in includes/admin/class-wc-admin-log-table-list.php - About 2 hrs to fix

    Method source_dropdown has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function source_dropdown() {
            global $wpdb;
    
            $sources = $wpdb->get_col(
                "SELECT DISTINCT source
    Severity: Minor
    Found in includes/admin/class-wc-admin-log-table-list.php - About 1 hr to fix

      Function get_items_query_order has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function get_items_query_order() {
              $valid_orders = array( 'level', 'source', 'timestamp' );
              if ( ! empty( $_REQUEST['orderby'] ) && in_array( $_REQUEST['orderby'], $valid_orders ) ) {
                  $by = wc_clean( $_REQUEST['orderby'] );
              } else {
      Severity: Minor
      Found in includes/admin/class-wc-admin-log-table-list.php - About 25 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