From dc26ca7e7708e5ccb42ba800c06d57bc7f82e1ac Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 23 Jun 2021 16:39:40 +0200 Subject: [PATCH] Add missing getId() method. --- src/Bundle/ChillPersonBundle/Entity/SocialWork/Goal.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Bundle/ChillPersonBundle/Entity/SocialWork/Goal.php b/src/Bundle/ChillPersonBundle/Entity/SocialWork/Goal.php index 996fcf3eb..633df147c 100644 --- a/src/Bundle/ChillPersonBundle/Entity/SocialWork/Goal.php +++ b/src/Bundle/ChillPersonBundle/Entity/SocialWork/Goal.php @@ -46,6 +46,11 @@ class Goal $this->results = new ArrayCollection(); } + public function getId(): int + { + return $this->id; + } + public function getTitle(): array { return $this->title;