woothemes/woocommerce

View on GitHub
includes/class-wc-product-variation.php

Summary

Maintainability
C
1 day
Test Coverage

WC_Product_Variation has 34 functions (exceeds 20 allowed). Consider refactoring.
Open

class WC_Product_Variation extends WC_Product_Simple {

    /**
     * Post type.
     *
Severity: Minor
Found in includes/class-wc-product-variation.php - About 4 hrs to fix

    File class-wc-product-variation.php has 269 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * Product Variation
     *
     * The WooCommerce product variation class handles product variation data.
    Severity: Minor
    Found in includes/class-wc-product-variation.php - About 2 hrs to fix

      Method set_parent_data has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function set_parent_data( $parent_data ) {
              $parent_data = wp_parse_args(
                  $parent_data,
                  array(
                      'title'              => '',
      Severity: Minor
      Found in includes/class-wc-product-variation.php - About 1 hr to fix

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

            public function get_tax_class( $context = 'view' ) {
                $value = null;
        
                if ( array_key_exists( 'tax_class', $this->data ) ) {
                    $value = array_key_exists( 'tax_class', $this->changes ) ? $this->changes['tax_class'] : $this->data['tax_class'];
        Severity: Minor
        Found in includes/class-wc-product-variation.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