예제 #1
0
파일: Role.php 프로젝트: sasedev/acf-expert
 /**
  * Add child
  *
  * @param Role $child
  *
  * @return Role
  */
 public function addChild(Role $child)
 {
     $this->childs[] = $child;
     $child->addParent($this);
     return $this;
 }