From c2c14be9d70cf54e9fd2749ce31ad2970af9ad99 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Thu, 21 Sep 2023 09:57:14 +0200 Subject: [PATCH] Remove setId methods --- .../Entity/AccompanyingCourseDocument.php | 6 ------ src/Bundle/ChillDocStoreBundle/Entity/PersonDocument.php | 7 ------- .../ChillTaskBundle/Entity/Task/SingleTaskPlaceEvent.php | 7 ------- 3 files changed, 20 deletions(-) diff --git a/src/Bundle/ChillDocStoreBundle/Entity/AccompanyingCourseDocument.php b/src/Bundle/ChillDocStoreBundle/Entity/AccompanyingCourseDocument.php index ff74a0b26..aa893de2a 100644 --- a/src/Bundle/ChillDocStoreBundle/Entity/AccompanyingCourseDocument.php +++ b/src/Bundle/ChillDocStoreBundle/Entity/AccompanyingCourseDocument.php @@ -66,10 +66,4 @@ class AccompanyingCourseDocument extends Document implements HasScopesInterface, return $this; } - public function setId($id): self - { - $this->id = $id; - - return $this; - } } diff --git a/src/Bundle/ChillDocStoreBundle/Entity/PersonDocument.php b/src/Bundle/ChillDocStoreBundle/Entity/PersonDocument.php index 22e7c3f48..f57c31156 100644 --- a/src/Bundle/ChillDocStoreBundle/Entity/PersonDocument.php +++ b/src/Bundle/ChillDocStoreBundle/Entity/PersonDocument.php @@ -62,13 +62,6 @@ class PersonDocument extends Document implements HasCenterInterface, HasScopeInt return $this->scope; } - public function setId($id): self - { - $this->id = $id; - - return $this; - } - public function setPerson($person): self { $this->person = $person; diff --git a/src/Bundle/ChillTaskBundle/Entity/Task/SingleTaskPlaceEvent.php b/src/Bundle/ChillTaskBundle/Entity/Task/SingleTaskPlaceEvent.php index 5511ea6f7..b4784e508 100644 --- a/src/Bundle/ChillTaskBundle/Entity/Task/SingleTaskPlaceEvent.php +++ b/src/Bundle/ChillTaskBundle/Entity/Task/SingleTaskPlaceEvent.php @@ -70,11 +70,4 @@ class SingleTaskPlaceEvent extends AbstractTaskPlaceEvent { return $this->id; } - - public function setId($id): self - { - $this->id = $id; - - return $this; - } }