Exemplo n.º 1
0
 /**
  * @param Category $child
  * @return $this
  */
 public function addChild(Category $child)
 {
     $child->setParent($this);
     $this->children[] = $child;
     return $this;
 }