<?php
namespace App\Validator;
use Symfony\Component\Validator\Constraint;
#[\Attribute]
class InstitutionalIdentifier extends Constraint {
public string $message = 'Der institutionelle Identifikator {{ string }} ist nicht gültig.';
public function getTargets() {
return self::CLASS_CONSTRAINT;
}
}