skyverge/wc-plugin-framework

View on GitHub

Showing 396 of 396 total issues

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

    public function add_support( $feature ) {

        if ( ! is_array( $feature ) ) {
            $feature = [ $feature ];
        }
Severity: Minor
Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway.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

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

    public function validate_cart( \WC_Cart $cart ) {

        if ( $this->get_plugin()->is_subscriptions_active() && \WC_Subscriptions_Cart::cart_contains_subscription() ) {
            throw new SV_WC_Payment_Gateway_Exception( 'Cart contains subscriptions.' );
        }
Severity: Minor
Found in woocommerce/payment-gateway/External_Checkout/Google_Pay/Google_Pay.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

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

    protected function localize_script( $handle, $params, $object_name = '' ) {

        // If the script isn't loaded, bail
        if ( ! wp_script_is( $handle, 'enqueued' ) ) {
            return;
Severity: Minor
Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway.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

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

    protected function do_transaction_failed_result( \WC_Order $order, SV_WC_Payment_Gateway_API_Response $response ) {

        $order_note = '';

        // build the order note with what data we have
Severity: Minor
Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway.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

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

    public function get_customer_id( $user_id, $args = [] ) {

        $defaults = [
            'environment_id' => $this->get_environment(),
            'autocreate'     => true,
Severity: Minor
Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway.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

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

    public function build_payment_request( $amount, $args = [] ) {

        $args = wp_parse_args( $args, array(
            'currency_code'         => get_woocommerce_currency(),
            'country_code'          => get_option( 'woocommerce_default_country' ),

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

    public function do_not_copy_order_meta( $order_meta ) {

        $meta_keys = $this->get_order_specific_meta_keys();

        foreach ( (array) $order_meta as $index => $meta ) {

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

    protected function add_debug_setting_notices() {

        foreach ( $this->get_gateways() as $gateway ) {

            if ( $gateway->is_enabled() && $gateway->is_production_environment() && ! $gateway->debug_off() ) {
Severity: Minor
Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway-plugin.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

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

    protected function process_void( \WC_Order $order ) {

        // partial voids are not supported
        if ( $order->refund->amount != $order->get_total() ) {
            return new \WP_Error( 'wc_' . $this->get_id() . '_void_error', esc_html__( 'Oops, you cannot partially void this order. Please use the full order amount.', 'woocommerce-plugin-framework' ), 500 );
Severity: Minor
Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway.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

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

    public function remove_support( $feature ) {

        if ( ! is_array( $feature ) ) {
            $feature = [ $feature ];
        }
Severity: Minor
Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway.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

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

    protected function do_invalid_transaction_response( $order, $response ) {

        if ( $response->is_ipn() ) {

            status_header( 200 );
Severity: Minor
Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway-hosted.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

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

    public function maybe_capture_paid_order( $order_id, $old_status, $new_status ) {

        $paid_statuses = (array) wc_get_is_paid_statuses();

        // bail if changing to a non-paid status or from a paid status
Severity: Minor
Found in woocommerce/payment-gateway/Handlers/Capture.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

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

    public function ajax_save_payment_method() {

        check_ajax_referer( 'wc_' . $this->get_plugin()->get_id() . '_save_payment_method', 'nonce' );

        try {

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

    public function get_legacy_tokens( $user_id, $environment_id = null ) {

        if ( null === $environment_id ) {
            $environment_id = $this->get_environment_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

Avoid too many return statements within this method.
Open

            return;

    Avoid too many return statements within this method.
    Open

            return $is_valid;
    Severity: Major
    Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway-direct.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                  return;

        Avoid too many return statements within this method.
        Open

                    return $error;
        Severity: Major
        Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                          return $error;
          Severity: Major
          Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway.php - About 30 mins to fix

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

                protected function get_js_handler_args() {
            
                    $args = [
                        'plugin_id'               => $this->get_gateway()->get_plugin()->get_id(),
                        'id'                      => $this->get_gateway()->get_id(),
            Severity: Minor
            Found in woocommerce/payment-gateway/class-sv-wc-payment-gateway-payment-form.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

            Severity
            Category
            Status
            Source
            Language