Ejemplo n.º 1
0
 /**
  * Add Child
  *
  * @param  Admin\Entity\MasterSystem $child
  * @return MasterSystem
  */
 public function addChild(\Admin\Entity\MasterSystem $child)
 {
     $child->setParent($this);
     // synchronously updating inverse side
     $this->children[] = $child;
     return $this;
 }