From ed3f46ce7f60b98a23baf100ec8c5eeaa50578d9 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 6 May 2021 12:52:29 +0200 Subject: [PATCH] Fix return type. --- src/Bundle/ChillPersonBundle/Entity/Person.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/Entity/Person.php b/src/Bundle/ChillPersonBundle/Entity/Person.php index 464be5f31..94e0a0ee5 100644 --- a/src/Bundle/ChillPersonBundle/Entity/Person.php +++ b/src/Bundle/ChillPersonBundle/Entity/Person.php @@ -1011,7 +1011,7 @@ class Person implements HasCenterInterface * By default, the addresses are ordered by date, descending (the most * recent first) */ - public function getAddresses(): ArrayCollection + public function getAddresses(): Collection { return $this->addresses; }