Baum\Node::moveRight PHP Method

moveRight() public method

Find the right sibling and move to the right of it.
public moveRight ( ) : Node
return Node
    public function moveRight()
    {
        return $this->moveToRightOf($this->getRightSibling());
    }