woothemes/woocommerce

View on GitHub
includes/legacy/api/v1/class-wc-api-xml-handler.php

Summary

Maintainability
D
1 day
Test Coverage

Function format_product_data has a Cognitive Complexity of 41 (exceeds 5 allowed). Consider refactoring.
Open

    public function format_product_data( $data ) {

        // handle attribute values
        if ( ! empty( $data['attributes'] ) ) {

Severity: Minor
Found in includes/legacy/api/v1/class-wc-api-xml-handler.php - About 6 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 array_to_xml has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
Open

    private function array_to_xml( $element_key, $element_value = array() ) {

        if ( is_array( $element_value ) ) {

            // handle attributes
Severity: Minor
Found in includes/legacy/api/v1/class-wc-api-xml-handler.php - About 4 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 format_product_data has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function format_product_data( $data ) {

        // handle attribute values
        if ( ! empty( $data['attributes'] ) ) {

Severity: Minor
Found in includes/legacy/api/v1/class-wc-api-xml-handler.php - About 1 hr to fix

    Method array_to_xml has 38 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        private function array_to_xml( $element_key, $element_value = array() ) {
    
            if ( is_array( $element_value ) ) {
    
                // handle attributes
    Severity: Minor
    Found in includes/legacy/api/v1/class-wc-api-xml-handler.php - About 1 hr to fix

      Method generate_response has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function generate_response( $data ) {
      
              $this->xml = new XMLWriter();
      
              $this->xml->openMemory();
      Severity: Minor
      Found in includes/legacy/api/v1/class-wc-api-xml-handler.php - About 1 hr to fix

        Function generate_response has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public function generate_response( $data ) {
        
                $this->xml = new XMLWriter();
        
                $this->xml->openMemory();
        Severity: Minor
        Found in includes/legacy/api/v1/class-wc-api-xml-handler.php - About 45 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