Todaymade\Daux\Tree\Entry::setParent PHP Method

setParent() protected method

protected setParent ( Directory $parent )
$parent Directory
    protected function setParent(Directory $parent)
    {
        if ($this->parent) {
            $this->parent->removeChild($this);
        }
        $parent->addChild($this);
        $this->parent = $parent;
    }