Fix incorrect condition

This commit is contained in:
George Burduli 2024-08-13 11:08:50 +04:00
parent caee378ba4
commit 89a5943a3f
No known key found for this signature in database
GPG key ID: 572A97DFDA3D2E5C

View file

@ -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 );
}
}