DataTypeHandler::endElement PHP Method

endElement() public method

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
return void
    function endElement($name)
    {
        $this->element->parsingComplete();
        parent::endElement($name);
    }