Newscoop\Entity\Acl\Role::getRules PHP 메소드

getRules() 공개 메소드

Get rules
public getRules ( ) : ArrayCollection
리턴 Doctrine\Common\Collections\ArrayCollection
    public function getRules()
    {
        return $this->rules;
    }

Usage Example

예제 #1
0
파일: Group.php 프로젝트: nidzix/Newscoop
 /**
  * Get role rules
  *
  * @return array
  */
 public function getRoleRules()
 {
     return $this->role ? $this->role->getRules() : array();
 }
All Usage Examples Of Newscoop\Entity\Acl\Role::getRules