Baum\Node::isSelfOrDescendantOf PHP Méthode

isSelfOrDescendantOf() public méthode

Returns true if node is self or a descendant.
public isSelfOrDescendantOf ( $other ) : boolean
Résultat boolean
    public function isSelfOrDescendantOf($other)
    {
        return $this->getLeft() >= $other->getLeft() && $this->getLeft() < $other->getRight() && $this->inSameScope($other);
    }