我有这种情况:
User
将属于Groups
Groups
会有一定的Roles
现在我想知道我是否需要在 Group.php 中声明它
$this->roles = new \Doctrine\Common\Collections\ArrayCollection();
或者
$this->roles = new array();
我很困惑这如何与 symfony 安全性一起工作。我的意思是什么格式的 symfony 安全想要在 arraycollection 或 array 中的角色。