@@ -15,10 +15,10 @@ final class Report extends File
1515 public function __construct (string $ name )
1616 {
1717 $ dom = new \DOMDocument ();
18- $ dom ->loadXML ('<?xml version="1.0" ?><phpunit xmlns="http ://schema.phpunit.de/coverage/1.0"><file /></phpunit> ' );
18+ $ dom ->loadXML ('<?xml version="1.0" ?><phpunit xmlns="https ://schema.phpunit.de/coverage/1.0"><file /></phpunit> ' );
1919
2020 $ contextNode = $ dom ->getElementsByTagNameNS (
21- 'http ://schema.phpunit.de/coverage/1.0 ' ,
21+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
2222 'file '
2323 )->item (0 );
2424
@@ -36,7 +36,7 @@ public function getFunctionObject($name): Method
3636 {
3737 $ node = $ this ->getContextNode ()->appendChild (
3838 $ this ->getDomDocument ()->createElementNS (
39- 'http ://schema.phpunit.de/coverage/1.0 ' ,
39+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
4040 'function '
4141 )
4242 );
@@ -57,14 +57,14 @@ public function getTraitObject($name): Unit
5757 public function getSource (): Source
5858 {
5959 $ source = $ this ->getContextNode ()->getElementsByTagNameNS (
60- 'http ://schema.phpunit.de/coverage/1.0 ' ,
60+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
6161 'source '
6262 )->item (0 );
6363
6464 if (!$ source ) {
6565 $ source = $ this ->getContextNode ()->appendChild (
6666 $ this ->getDomDocument ()->createElementNS (
67- 'http ://schema.phpunit.de/coverage/1.0 ' ,
67+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
6868 'source '
6969 )
7070 );
@@ -83,7 +83,7 @@ private function getUnitObject($tagName, $name): Unit
8383 {
8484 $ node = $ this ->getContextNode ()->appendChild (
8585 $ this ->getDomDocument ()->createElementNS (
86- 'http ://schema.phpunit.de/coverage/1.0 ' ,
86+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
8787 $ tagName
8888 )
8989 );
0 commit comments