Fix accidental removal of -> in GenderAggregator

This commit is contained in:
Julie Lenaerts 2024-10-22 07:31:52 +02:00
parent 9d05f2ac2b
commit 5ca558bba3

View File

@ -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 '';
}