Baum\Node::moveLeft PHP Method

moveLeft() public method

Find the left sibling and move to left of it.
public moveLeft ( ) : Node
return Node
    public function moveLeft()
    {
        return $this->moveToLeftOf($this->getLeftSibling());
    }