admin: fix error when creating document category

This commit is contained in:
nobohan 2022-05-11 12:03:38 +02:00
parent fa458c54ec
commit f44b9ca05b

View File

@ -100,4 +100,11 @@ class DocumentCategory
return $this; return $this;
} }
public function setBundleId($id): self
{
$this->bundleId = $id;
return $this;
}
} }