Total Complexity | 7 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class ValidCreditorInformationPaymentReferenceCombinationValidator extends ConstraintValidator |
||
12 | { |
||
13 | private const QR_IBAN_IS_ALLOWED = [ |
||
14 | PaymentReference::TYPE_QR => true, |
||
15 | PaymentReference::TYPE_SCOR => false, |
||
16 | PaymentReference::TYPE_NON => false, |
||
17 | ]; |
||
18 | |||
19 | public function validate($qrBill, Constraint $constraint) |
||
43 | } |