felixarntz/wpdlib

View on GitHub
inc/WPDLib/FieldTypes/Select.php

Summary

Maintainability
B
6 hrs
Test Coverage

Function display has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

        public function display( $val, $echo = true ) {
            $args = $this->args;
            $args['name'] = $this->get_sanitized_name();

            $args = array_merge( $args, $this->data_atts );
Severity: Minor
Found in inc/WPDLib/FieldTypes/Select.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 display_item has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

        protected function display_item( $value, $label, $single_type, $id, $name, $current = '', $echo = true ) {
            $option_atts = array(
                'value'    => $value,
                'selected' => $this->is_value_checked_or_selected( $current, $value ),
            );
Severity: Minor
Found in inc/WPDLib/FieldTypes/Select.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 display has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        public function display( $val, $echo = true ) {
            $args = $this->args;
            $args['name'] = $this->get_sanitized_name();

            $args = array_merge( $args, $this->data_atts );
Severity: Minor
Found in inc/WPDLib/FieldTypes/Select.php - About 1 hr to fix

    Method display_item has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

            protected function display_item( $value, $label, $single_type, $id, $name, $current = '', $echo = true ) {
    Severity: Major
    Found in inc/WPDLib/FieldTypes/Select.php - About 50 mins to fix

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

              public function enqueue_assets() {
                  if ( self::is_enqueued( __CLASS__ ) ) {
                      return array();
                  }
      
      
      Severity: Minor
      Found in inc/WPDLib/FieldTypes/Select.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