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

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

Scope targeting itself and all of its nested children.
public descendantsAndSelf ( ) : Builder
Результат Illuminate\Database\Query\Builder
    public function descendantsAndSelf()
    {
        return $this->newNestedSetQuery()->where($this->getLeftColumnName(), '>=', $this->getLeft())->where($this->getLeftColumnName(), '<', $this->getRight());
    }