kilbot/WooCommerce-POS

View on GitHub
includes/api/legacy/products.php

Summary

Maintainability
C
1 day
Test Coverage

Method prefix_query has 96 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function prefix_query( $prefix, $term, \WP_Query $wp_query ) {
        // store original meta_query
        $meta_query = $wp_query->get( 'meta_query' );
        $tax_query  = $wp_query->get( 'tax_query' );

Severity: Major
Found in includes/api/legacy/products.php - About 3 hrs to fix

    File products.php has 320 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    /**
     * POS Product Class
     * duck punches the WC REST API
    Severity: Minor
    Found in includes/api/legacy/products.php - About 3 hrs to fix

      Function prefix_query has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
      Open

          private function prefix_query( $prefix, $term, \WP_Query $wp_query ) {
              // store original meta_query
              $meta_query = $wp_query->get( 'meta_query' );
              $tax_query  = $wp_query->get( 'tax_query' );
      
      
      Severity: Minor
      Found in includes/api/legacy/products.php - About 2 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 get_variation_option has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          private function get_variation_option( $product, $attribute, $option ) {
              $name = $option;
      
              // taxonomy attributes
              if ( $attribute['is_taxonomy'] ) {
      Severity: Minor
      Found in includes/api/legacy/products.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

      There are no issues that match your filters.

      Category
      Status