DataTypeHandler::endElement PHP Метод

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

Overrides endElement for data types. Tells the type handler that processing the element had been finished so handlers know they can perform actions that need to be based on the data contained within the element.
public endElement ( $name ) : void
Результат void
    function endElement($name)
    {
        $this->element->parsingComplete();
        parent::endElement($name);
    }