Remove setId methods

This commit is contained in:
2023-09-21 09:57:14 +02:00
parent b7119a2733
commit c2c14be9d7
3 changed files with 0 additions and 20 deletions

View File

@@ -66,10 +66,4 @@ class AccompanyingCourseDocument extends Document implements HasScopesInterface,
return $this;
}
public function setId($id): self
{
$this->id = $id;
return $this;
}
}

View File

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