Baum\Node::moveTo PHP 메소드

moveTo() 보호된 메소드

Main move method. Here we handle all node movements with the corresponding lft/rgt index updates.
protected moveTo ( Baum\Node | integer $target, string $position ) : Node
$target Baum\Node | integer
$position string
리턴 Node
    protected function moveTo($target, $position)
    {
        return Move::to($this, $target, $position);
    }