mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-03 15:36:14 +00:00
15 lines
282 B
PHP
15 lines
282 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\PersonBundle\Validator\Constraints\AccompanyingPeriod;
|
|
|
|
use Symfony\Component\Validator\Constraint;
|
|
|
|
|
|
/**
|
|
* @Annotation
|
|
*/
|
|
class ParticipationOverlap extends Constraint
|
|
{
|
|
public $message = 'This participation already exists.';
|
|
} |