Beispiel #1
0
 /**
  * It should create a root element.
  */
 public function testCreateRoot()
 {
     $this->document->createRoot('hello');
     $this->assertContains('<hello/>', $this->document->saveXml());
 }
Beispiel #2
0
 public function render(Document $reportsDocument, array $config)
 {
     $this->output->writeln('Report XML (debug):');
     $this->output->writeln($reportsDocument->saveXml());
 }