From b6f40633cdfb4188040b51b3f10812b44c0f47f3 Mon Sep 17 00:00:00 2001 From: SergiuBota1 Date: Thu, 22 Dec 2022 13:34:57 +0200 Subject: [PATCH] changed return type from ArrayCollection to Collection --- src/User/src/Entity/User.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/User/src/Entity/User.php b/src/User/src/Entity/User.php index 8961cfe7..fd2092b9 100644 --- a/src/User/src/Entity/User.php +++ b/src/User/src/Entity/User.php @@ -369,9 +369,9 @@ public function addResetPassword(UserResetPassword $resetPassword): self } /** - * @return ArrayCollection + * @return Collection */ - public function getResetPasswords(): ArrayCollection + public function getResetPasswords(): Collection { return $this->resetPasswords; }