woothemes/woocommerce

View on GitHub
includes/abstracts/abstract-wc-widget.php

Summary

Maintainability
C
1 day
Test Coverage

Function get_current_page_url has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

    protected function get_current_page_url() {
        if ( Constants::is_defined( 'SHOP_IS_ON_FRONT' ) ) {
            $link = home_url();
        } elseif ( is_shop() ) {
            $link = get_permalink( wc_get_page_id( 'shop' ) );
Severity: Minor
Found in includes/abstracts/abstract-wc-widget.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

Method form has 55 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function form( $instance ) {

        if ( empty( $this->settings ) ) {
            return;
        }
Severity: Major
Found in includes/abstracts/abstract-wc-widget.php - About 2 hrs to fix

    Function update has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

        public function update( $new_instance, $old_instance ) {
    
            $instance = $old_instance;
    
            if ( empty( $this->settings ) ) {
    Severity: Minor
    Found in includes/abstracts/abstract-wc-widget.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

    Method get_current_page_url has 45 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function get_current_page_url() {
            if ( Constants::is_defined( 'SHOP_IS_ON_FRONT' ) ) {
                $link = home_url();
            } elseif ( is_shop() ) {
                $link = get_permalink( wc_get_page_id( 'shop' ) );
    Severity: Minor
    Found in includes/abstracts/abstract-wc-widget.php - About 1 hr to fix

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

          public function form( $instance ) {
      
              if ( empty( $this->settings ) ) {
                  return;
              }
      Severity: Minor
      Found in includes/abstracts/abstract-wc-widget.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 update has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function update( $new_instance, $old_instance ) {
      
              $instance = $old_instance;
      
              if ( empty( $this->settings ) ) {
      Severity: Minor
      Found in includes/abstracts/abstract-wc-widget.php - About 1 hr to fix

        There are no issues that match your filters.

        Category
        Status