mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
FIX [filiation][validator] adjust validation condition
This commit is contained in:
parent
72f5b0b275
commit
c8bab1218f
@ -47,10 +47,12 @@ class RelationshipNoDuplicateValidator extends ConstraintValidator
|
||||
|
||||
foreach ($relationships as $r) {
|
||||
if (spl_object_hash($r) !== spl_object_hash($value)
|
||||
and $r->getFromPerson() === $fromPerson
|
||||
|| $r->getFromPerson() === $toPerson
|
||||
|| $r->getToPerson() === $fromPerson
|
||||
|| $r->getToPerson() === $toPerson
|
||||
and
|
||||
(
|
||||
($r->getFromPerson() === $fromPerson and $r->getToPerson() === $toPerson)
|
||||
||
|
||||
($r->getFromPerson() === $toPerson and $r->getToPerson() === $fromPerson)
|
||||
)
|
||||
) {
|
||||
$this->context->buildViolation($constraint->message)
|
||||
->addViolation();
|
||||
|
Loading…
x
Reference in New Issue
Block a user