skyverge/wc-plugin-framework

View on GitHub
woocommerce/payment-gateway/admin/class-sv-wc-payment-gateway-admin-payment-token-editor.php

Summary

Maintainability
D
1 day
Test Coverage

File class-sv-wc-payment-gateway-admin-payment-token-editor.php has 326 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * WooCommerce Payment Gateway Framework
 *
 * This source file is subject to the GNU General Public License v3.0

    Method get_fields has 71 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function get_fields( $type = '' ) {
    
            if ( ! $type ) {
                $type = $this->get_gateway()->get_payment_type();
            }

      SV_WC_Payment_Gateway_Admin_Payment_Token_Editor has 24 functions (exceeds 20 allowed). Consider refactoring.
      Open

      #[\AllowDynamicProperties]
      class SV_WC_Payment_Gateway_Admin_Payment_Token_Editor {
      
      
          /** @var SV_WC_Payment_Gateway_Direct the gateway object **/

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

            public function save( $user_id ) {
        
                $tokens = ( isset( $_POST[ $this->get_input_name() ] ) ) ? $_POST[ $this->get_input_name() ] : [];
        
                $default_token_id = SV_WC_Helper::get_posted_value( $this->get_input_name() . '_default' );

        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 ajax_remove_token has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            public function ajax_remove_token() {
        
                try {
        
                    if ( ! check_ajax_referer( 'wc_payment_gateway_admin_remove_payment_token', 'security' ) ) {

        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 get_fields has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function get_fields( $type = '' ) {
        
                if ( ! $type ) {
                    $type = $this->get_gateway()->get_payment_type();
                }

        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 get_tokens has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function get_tokens( $user_id ) {
        
                // Clear any cached tokens
                $this->get_gateway()->get_payment_tokens_handler()->clear_transient( $user_id );
        
        

        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 ajax_refresh_tokens has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            public function ajax_refresh_tokens() {
        
                try {
        
                    if ( ! check_ajax_referer( 'wc_payment_gateway_admin_refresh_payment_tokens', 'security', false ) ) {

        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