getGroups() 공개 메소드

Get groups granted to the user
public getGroups ( ) : Doctrine\Common\Collections\Collection
리턴 Doctrine\Common\Collections\Collection
예제 #1
0
파일: User.php 프로젝트: harijoe/cheerup
 /**
  * Gets the groups granted to the user.
  *
  * @return Collection
  */
 public function getSecurityGroups()
 {
     return parent::getGroups();
 }