From 5ca558bba374c4dd4aaa7306afc8f8439a0da211 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Tue, 22 Oct 2024 07:31:52 +0200 Subject: [PATCH] Fix accidental removal of -> in GenderAggregator --- .../Export/Aggregator/PersonAggregators/GenderAggregator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/Export/Aggregator/PersonAggregators/GenderAggregator.php b/src/Bundle/ChillPersonBundle/Export/Aggregator/PersonAggregators/GenderAggregator.php index f4d22b8e6..f7ae26dca 100644 --- a/src/Bundle/ChillPersonBundle/Export/Aggregator/PersonAggregators/GenderAggregator.php +++ b/src/Bundle/ChillPersonBundle/Export/Aggregator/PersonAggregators/GenderAggregator.php @@ -59,7 +59,7 @@ final readonly class GenderAggregator implements AggregatorInterface return $this->translator->trans('Gender'); } - if (null === $gender = $this-repository->find((int) $value)) { + if (null === $gender = $this->repository->find((int) $value)) { return ''; }