All checks were successful
Cadoles/nineskeletor/pipeline/pr-master This commit looks good
14 lines
201 B
PHP
14 lines
201 B
PHP
<?php
|
|
|
|
namespace App\Validator;
|
|
|
|
use Symfony\Component\Validator\Constraint;
|
|
|
|
/**
|
|
* @Annotation
|
|
*/
|
|
class Grouplabel extends Constraint
|
|
{
|
|
public $message = 'Caractères interdit dans ce label';
|
|
}
|