From e19d64e51e6be32c097128696bcb0165a3501e1c Mon Sep 17 00:00:00 2001 From: Peter Fabian Date: Mon, 26 Mar 2018 11:00:28 +0200 Subject: [PATCH] Fixed PHPCS violations --- .../paypal/includes/class-wc-gateway-paypal-request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php b/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php index b462fc42225..8eb541ce756 100644 --- a/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php +++ b/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php @@ -105,7 +105,7 @@ class WC_Gateway_Paypal_Request { // If URL is longer than 2,083 chars, ignore line items and send cart to Paypal as a single item. // One item's name can only be 127 characters long, so the URL should not be longer than limit. // URL character limit via: - // https://support.microsoft.com/en-us/help/208427/maximum-url-length-is-2-083-characters-in-internet-explorer + // https://support.microsoft.com/en-us/help/208427/maximum-url-length-is-2-083-characters-in-internet-explorer. if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { return $paypal_args; }