Hopefully fix phpunit issue on github actions

This commit is contained in:
Jan Böhmer 2023-04-16 01:46:44 +02:00
parent 37fb895d67
commit 273293479d
2 changed files with 2 additions and 0 deletions

View file

@ -116,6 +116,7 @@ class Project extends AbstractStructuralDBElement
{
parent::__construct();
$this->bom_entries = new ArrayCollection();
$this->children = new ArrayCollection();
}
public function __clone()

View file

@ -97,6 +97,7 @@ class Group extends AbstractStructuralDBElement implements HasPermissionsInterfa
parent::__construct();
$this->permissions = new PermissionData();
$this->users = new ArrayCollection();
$this->children = new ArrayCollection();
}
/**