mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
17 lines
313 B
PHP
17 lines
313 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\PersonBundle\Validator\Constraints\AccompanyingPeriod;
|
|
|
|
use Symfony\Component\Validator\Constraint;
|
|
|
|
|
|
/**
|
|
* @Annotation
|
|
*/
|
|
class ResourceDuplicateCheck extends Constraint
|
|
{
|
|
public $message = '{{ name }} is already associated to this accompanying course.';
|
|
}
|
|
|