pQuery\HtmlParser::parse_text PHP Method

parse_text() public method

public parse_text ( )
    function parse_text()
    {
        parent::parse_text();
        if ($this->status['text'] !== '') {
            //end($this->hierarchy)->addText($this->status['text']);
            $index = null;
            //Needs to be passed by ref
            $this->hierarchy[count($this->hierarchy) - 1]->addText($this->status['text'], $index);
        }
    }