. */ namespace App\Validator\Constraints\AssemblySystem; use Symfony\Component\Validator\Constraint; /** * This constraint checks that the given UniqueReferencedAssembly is valid. */ #[\Attribute(\Attribute::TARGET_PROPERTY)] class UniqueReferencedAssembly extends Constraint { public string $message = 'assembly.bom_entry.assembly_already_in_bom'; }