12 lines
199 B
PHP
12 lines
199 B
PHP
|
<?php
|
||
|
namespace App\Validator;
|
||
|
|
||
|
use Symfony\Component\Validator\Constraint;
|
||
|
|
||
|
/**
|
||
|
* @Annotation
|
||
|
*/
|
||
|
class Grouplabel extends Constraint
|
||
|
{
|
||
|
public $message = "Caractères interdit dans ce label";
|
||
|
}
|