Exemplo n.º 1
0
 /**
  * Inserts new node to closure table.
  *
  * @return void
  */
 protected function insertNode()
 {
     $descendant = $this->getKey();
     $ancestor = isset($this->parent_id) ? $this->parent_id : $descendant;
     $this->closure->insertNode($ancestor, $descendant);
 }