pQuery\DomNode::filter_notempty PHP Method

filter_notempty() protected method

Checks if node matches css query filter ":not-empty"
See also: match()
protected filter_notempty ( ) : boolean
return boolean
    protected function filter_notempty()
    {
        return $this->childCount() !== 0;
    }
DomNode