fix(BankPaymentValidator): check for negative identification number

This commit is contained in:
2024-01-18 13:50:08 +01:00
parent bf65ce058d
commit deacc6024b
2 changed files with 2 additions and 2 deletions

View File

@@ -35,6 +35,6 @@ class BankPaymentIdentificationNumberValidatorTest extends ValidatorTestCase
}
private function failureDp(): array {
return [['122.b'], ['a.a'], ['a'], ['2.040'], ['2,a'], ['122.1'], ['12345678901']];
return [['122.b'], ['a.a'], ['a'], ['2.040'], ['2,a'], ['122.1'], ['12345678901'], ['-323']];
}
}