Habari\HTMLTokenizer::parse_element_close PHP Метод

parse_element_close() приватный Метод

private parse_element_close ( )
    private function parse_element_close()
    {
        $tag = $this->up_to_chr(self::$CHR_TAG_END);
        if ($tag != '') {
            $char = $this->get();
            if ($char == '/' && $this->peek() == '>') {
                $this->inc();
            }
            $this->node(self::NODE_TYPE_ELEMENT_CLOSE, $tag, null, null);
        }
        return self::$STATE_START;
    }