mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Fix incorrect condition
This commit is contained in:
parent
caee378ba4
commit
89a5943a3f
1 changed files with 1 additions and 1 deletions
|
@ -48,6 +48,6 @@ class CardFieldsApplies {
|
|||
* @return bool
|
||||
*/
|
||||
public function for_country(): bool {
|
||||
return ! in_array( $this->country, $this->allowed_country_matrix, true );
|
||||
return in_array( $this->country, $this->allowed_country_matrix, true );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue