nineskeletor/src/Validator/Niveau02unique.php

13 lines
288 B
PHP
Raw Normal View History

2022-07-21 16:15:47 +02:00
<?php
namespace App\Validator;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
*/
class Niveau02unique extends Constraint
{
public $messagegroup = "Un groupe utilise déjà ce label";
public $messageniveau01 = "Un niveau de rang 01 utilise déjà ce label";
}