Updated dependencies

This commit is contained in:
Jan Böhmer 2023-04-16 23:58:03 +02:00
parent 273293479d
commit 7baad04e39
2 changed files with 97 additions and 101 deletions

View file

@ -47,7 +47,7 @@ class Group extends AbstractStructuralDBElement implements HasPermissionsInterfa
/**
* @ORM\OneToMany(targetEntity="Group", mappedBy="parent")
* @ORM\OrderBy({"name" = "ASC"})
* @var Collection
* @var Collection<int, self>
*/
protected Collection $children;
@ -59,7 +59,7 @@ class Group extends AbstractStructuralDBElement implements HasPermissionsInterfa
/**
* @ORM\OneToMany(targetEntity="User", mappedBy="group")
* @var Collection<User>
* @var Collection<int, User>
*/
protected Collection $users;