mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-04-09 14:33:44 +00:00
fix cs
This commit is contained in:
@@ -218,12 +218,12 @@ class PersonJsonNormalizer implements DenormalizerAwareInterface, NormalizerAwar
|
||||
$context
|
||||
),
|
||||
'altNames' => $this->normalizeAltNames($person->getAltNames()),
|
||||
'current_household_id' => $household !== null ?
|
||||
'current_household_id' => null !== $household ?
|
||||
$this->normalizer->normalize($household->getId(), $format, $context) :
|
||||
null,
|
||||
'current_residential_addresses' => $currentResidentialAddresses !== [] ?
|
||||
'current_residential_addresses' => [] !== $currentResidentialAddresses ?
|
||||
$this->normalizer->normalize($currentResidentialAddresses, $format, $context) :
|
||||
null
|
||||
null,
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user