woothemes/woocommerce

View on GitHub
includes/class-wc-shortcodes.php

Summary

Maintainability
D
2 days
Test Coverage

File class-wc-shortcodes.php has 422 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Shortcodes
 *
 * @package WooCommerce\Classes
Severity: Minor
Found in includes/class-wc-shortcodes.php - About 6 hrs to fix

    Method product_page has 75 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public static function product_page( $atts ) {
            if ( empty( $atts ) ) {
                return '';
            }
    
    
    Severity: Major
    Found in includes/class-wc-shortcodes.php - About 3 hrs to fix

      Method product_categories has 67 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function product_categories( $atts ) {
              if ( isset( $atts['number'] ) ) {
                  $atts['limit'] = $atts['number'];
              }
      
      
      Severity: Major
      Found in includes/class-wc-shortcodes.php - About 2 hrs to fix

        WC_Shortcodes has 22 functions (exceeds 20 allowed). Consider refactoring.
        Open

        class WC_Shortcodes {
        
            /**
             * Init shortcodes.
             */
        Severity: Minor
        Found in includes/class-wc-shortcodes.php - About 2 hrs to fix

          Method product_add_to_cart has 41 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public static function product_add_to_cart( $atts ) {
                  global $post;
          
                  if ( empty( $atts ) ) {
                      return '';
          Severity: Minor
          Found in includes/class-wc-shortcodes.php - About 1 hr to fix

            Function product_categories has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
            Open

                public static function product_categories( $atts ) {
                    if ( isset( $atts['number'] ) ) {
                        $atts['limit'] = $atts['number'];
                    }
            
            
            Severity: Minor
            Found in includes/class-wc-shortcodes.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

            Function product_page has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                public static function product_page( $atts ) {
                    if ( empty( $atts ) ) {
                        return '';
                    }
            
            
            Severity: Minor
            Found in includes/class-wc-shortcodes.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

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

                public static function product_add_to_cart( $atts ) {
                    global $post;
            
                    if ( empty( $atts ) ) {
                        return '';
            Severity: Minor
            Found in includes/class-wc-shortcodes.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 product_add_to_cart_url has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                public static function product_add_to_cart_url( $atts ) {
                    if ( empty( $atts ) ) {
                        return '';
                    }
            
            
            Severity: Minor
            Found in includes/class-wc-shortcodes.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