This commit is contained in:
2022-05-13 16:05:38 +02:00
parent 2a5bb28210
commit 89a700ff61
3 changed files with 48 additions and 49 deletions

View File

@@ -87,6 +87,13 @@ class DocumentCategory
return $this->name;
}
public function setBundleId($id): self
{
$this->bundleId = $id;
return $this;
}
public function setDocumentClass($documentClass): self
{
$this->documentClass = $documentClass;
@@ -100,11 +107,4 @@ class DocumentCategory
return $this;
}
public function setBundleId($id): self
{
$this->bundleId = $id;
return $this;
}
}