mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-01 10:59:45 +00:00
19 lines
364 B
PHP
19 lines
364 B
PHP
<?php
|
|
|
|
namespace Chill\PersonBundle\Validator\Constraints\Household;
|
|
|
|
use Symfony\Component\Validator\Constraint;
|
|
|
|
/**
|
|
* @Annotation
|
|
*/
|
|
class HouseholdMembershipSequential extends Constraint
|
|
{
|
|
public $message = 'household_membership.Person with membership covering';
|
|
|
|
public function getTargets()
|
|
{
|
|
return [ self::CLASS_CONSTRAINT ];
|
|
}
|
|
}
|