Exemplo n.º 1
0
 /**
  * @return \Venne\Security\Role[]
  */
 public function getWriteRoles()
 {
     if (!$this->isAllowedToRead()) {
         throw new PermissionDeniedException();
     }
     return $this->writeRoles->toArray();
 }
Exemplo n.º 2
0
Arquivo: Role.php Projeto: venne/venne
 /**
  * @return Role[]
  */
 public function getChildren()
 {
     return $this->children->toArray();
 }
Exemplo n.º 3
0
Arquivo: User.php Projeto: venne/venne
 /**
  * @return ArrayCollection|Role[]
  */
 public function getRoleEntities()
 {
     return $this->roleEntities->toArray();
 }