From 80f6b7d3307b29a9c16e819ce0ffd0b382ea970a Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Wed, 16 Nov 2022 18:41:26 +0100 Subject: [PATCH] cs fix --- .../GeographicalUnitStatAggregator.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Bundle/ChillPersonBundle/Export/Aggregator/AccompanyingCourseAggregators/GeographicalUnitStatAggregator.php b/src/Bundle/ChillPersonBundle/Export/Aggregator/AccompanyingCourseAggregators/GeographicalUnitStatAggregator.php index 9dec0f116..deb564001 100644 --- a/src/Bundle/ChillPersonBundle/Export/Aggregator/AccompanyingCourseAggregators/GeographicalUnitStatAggregator.php +++ b/src/Bundle/ChillPersonBundle/Export/Aggregator/AccompanyingCourseAggregators/GeographicalUnitStatAggregator.php @@ -53,9 +53,9 @@ final class GeographicalUnitStatAggregator implements AggregatorInterface $qb->expr()->andX( 'acp_geog_agg_location_history.startDate <= :acp_geog_aggregator_date', $qb->expr()->orX( - 'acp_geog_agg_location_history.endDate IS NULL', - 'acp_geog_agg_location_history.endDate > :acp_geog_aggregator_date' - ) + 'acp_geog_agg_location_history.endDate IS NULL', + 'acp_geog_agg_location_history.endDate > :acp_geog_aggregator_date' + ) ) ); @@ -70,9 +70,9 @@ final class GeographicalUnitStatAggregator implements AggregatorInterface 'IDENTITY(acp_geog_agg_address_person_location.person) = IDENTITY(acp_geog_agg_location_history.personLocation)', 'acp_geog_agg_address_person_location.validFrom < :acp_geog_aggregator_date', $qb->expr()->orX( - 'acp_geog_agg_address_person_location.validTo > :acp_geog_aggregator_date', - $qb->expr()->isNull('acp_geog_agg_address_person_location.validTo') - ) + 'acp_geog_agg_address_person_location.validTo > :acp_geog_aggregator_date', + $qb->expr()->isNull('acp_geog_agg_address_person_location.validTo') + ) ) );