From f44b9ca05bc24c6aa0487e93b6ab97cc42c18d5b Mon Sep 17 00:00:00 2001 From: nobohan Date: Wed, 11 May 2022 12:03:38 +0200 Subject: [PATCH] admin: fix error when creating document category --- src/Bundle/ChillDocStoreBundle/Entity/DocumentCategory.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Bundle/ChillDocStoreBundle/Entity/DocumentCategory.php b/src/Bundle/ChillDocStoreBundle/Entity/DocumentCategory.php index 55850b157..884447599 100644 --- a/src/Bundle/ChillDocStoreBundle/Entity/DocumentCategory.php +++ b/src/Bundle/ChillDocStoreBundle/Entity/DocumentCategory.php @@ -100,4 +100,11 @@ class DocumentCategory return $this; } + + public function setBundleId($id): self + { + $this->bundleId = $id; + + return $this; + } }