DataTypeHandler::endElement PHP Méthode

endElement() public méthode

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