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