This commit is contained in:
David Remer 2020-09-02 12:41:10 +03:00
parent c269f35d61
commit 0e45cc5cb6
3 changed files with 9 additions and 7 deletions

View file

@ -298,6 +298,7 @@ class PayPalGateway extends \WC_Payment_Gateway {
return $content; return $content;
} }
// phpcs:disable WordPress.Security.NonceVerification.Recommended
/** /**
* Defines the method title. If we are on the credit card tab in the settings, we want to change this. * Defines the method title. If we are on the credit card tab in the settings, we want to change this.
* *
@ -328,4 +329,5 @@ class PayPalGateway extends \WC_Payment_Gateway {
'paypal-for-woocommerce' 'paypal-for-woocommerce'
); );
} }
// phpcs:enable WordPress.Security.NonceVerification.Recommended
} }