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