Skip to content

Commit beb5d44

Browse files
Fix method name
1 parent 2ad2118 commit beb5d44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Report/Xml/Coverage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function __construct(DOMElement $context, string $line)
2828

2929
$this->writer = new XMLWriter;
3030
$this->writer->openMemory();
31-
$this->writer->startElementNS(null, $context->nodeName, 'https://schema.phpunit.de/coverage/1.0');
31+
$this->writer->startElementNs(null, $context->nodeName, 'https://schema.phpunit.de/coverage/1.0');
3232
$this->writer->writeAttribute('nr', $line);
3333
}
3434

0 commit comments

Comments
 (0)