woothemes/woocommerce

View on GitHub
includes/admin/importers/class-wc-tax-rate-importer.php

Summary

Maintainability
B
6 hrs
Test Coverage

Method greet has 56 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function greet() {

        echo '<div class="narrow">';
        echo '<p>' . esc_html__( 'Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click "Upload file and import".', 'woocommerce' ) . '</p>';

Severity: Major
Found in includes/admin/importers/class-wc-tax-rate-importer.php - About 2 hrs to fix

    Method import has 40 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function import( $file ) {
            if ( ! is_file( $file ) ) {
                $this->import_error( __( 'The file does not exist, please try again.', 'woocommerce' ) );
            }
    
    
    Severity: Minor
    Found in includes/admin/importers/class-wc-tax-rate-importer.php - About 1 hr to fix

      Function handle_upload has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          public function handle_upload() {
              $file_url = isset( $_POST['file_url'] ) ? wc_clean( wp_unslash( $_POST['file_url'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Nonce already verified in WC_Tax_Rate_Importer::dispatch()
      
              if ( empty( $file_url ) ) {
                  $file = wp_import_handle_upload();
      Severity: Minor
      Found in includes/admin/importers/class-wc-tax-rate-importer.php - About 55 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 import has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          public function import( $file ) {
              if ( ! is_file( $file ) ) {
                  $this->import_error( __( 'The file does not exist, please try again.', 'woocommerce' ) );
              }
      
      
      Severity: Minor
      Found in includes/admin/importers/class-wc-tax-rate-importer.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

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

          public function dispatch() {
      
              $this->header();
      
              $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
      Severity: Minor
      Found in includes/admin/importers/class-wc-tax-rate-importer.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

      There are no issues that match your filters.

      Category
      Status