Fix the cs

This commit is contained in:
Narek Zakarian 2025-02-20 13:32:01 +04:00
parent 66e52c9ad0
commit 834f1e6579
No known key found for this signature in database
GPG key ID: 07AFD7E7A9C164A7

View file

@ -78,7 +78,7 @@ class SubscriptionSettingsMapHelper {
*
* @returns bool true if the subscription mode should be disabled, otherwise false (also by default).
*/
$subscription_mode_disabled = ( bool ) apply_filters( 'woocommerce_paypal_payments_subscription_mode_disabled', false );
$subscription_mode_disabled = (bool) apply_filters( 'woocommerce_paypal_payments_subscription_mode_disabled', false );
return $subscription_mode_disabled ? self::OLD_SETTINGS_SUBSCRIPTION_MODE_VALUE_DISABLED : $subscription_mode_value;
}