for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sprain\SwissQrBill\Constraint;
use Symfony\Component\Validator\Constraint;
class ValidCreditorInformationPaymentReferenceCombination extends Constraint
{
public $message = 'The payment reference type "{{ referenceType }}" does not match with the iban type of "{{ iban }}".';
public function getTargets()
return self::CLASS_CONSTRAINT;
}