From 38674081d9da0818294e9ba9432b1bbd2167377a Mon Sep 17 00:00:00 2001 From: Manuel Aranda Date: Thu, 26 Sep 2024 12:44:16 +0200 Subject: [PATCH] refs #723. Fixed bug delete commandGroup --- src/Entity/CommandGroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/CommandGroup.php b/src/Entity/CommandGroup.php index 6cf5271..c50bc82 100644 --- a/src/Entity/CommandGroup.php +++ b/src/Entity/CommandGroup.php @@ -25,7 +25,7 @@ class CommandGroup extends AbstractEntity /** * @var Collection */ - #[ORM\ManyToMany(targetEntity: CommandTask::class, mappedBy: 'commandGroup')] + #[ORM\ManyToMany(targetEntity: CommandTask::class, mappedBy: 'commandGroups')] private Collection $commandTasks; public function __construct()