Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. XMLSerializer.php

function XMLSerializer::toDom

File

vendor/theseer/tokenizer/src/XMLSerializer.php, line 29

Class

XMLSerializer

Namespace

TheSeer\Tokenizer

Code

public function toDom(TokenCollection $tokens) : DOMDocument {
    $dom = new DOMDocument();
    $dom->preserveWhiteSpace = false;
    $dom->loadXML($this->toXML($tokens));
    return $dom;
}
RSS feed
Powered by Drupal