Baum\Node::moveLeft PHP Метод

moveLeft() публичный Метод

Find the left sibling and move to left of it.
public moveLeft ( ) : Node
Результат Node
    public function moveLeft()
    {
        return $this->moveToLeftOf($this->getLeftSibling());
    }