PHPDaemon\XMLStream\XMLStream::__destroy PHP Method

__destroy() public method

Destructor
public __destroy ( ) : void
return void
    public function __destroy()
    {
        if ($this->parser) {
            xml_parse($this->parser, '', true);
            xml_parser_free($this->parser);
        }
    }