Baum\Move::parentId PHP Method

parentId() protected method

Computes the new parent id for the node being moved.
protected parentId ( ) : integer
return integer
    protected function parentId()
    {
        switch ($this->position) {
            case 'root':
                return;
            case 'child':
                return $this->target->getKey();
            default:
                return $this->target->getParentId();
        }
    }