@@ -15,10 +15,10 @@ class Report extends File
15
15
public function __construct ($ name )
16
16
{
17
17
$ 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> ' );
19
19
20
20
$ contextNode = $ dom ->getElementsByTagNameNS (
21
- 'http ://schema.phpunit.de/coverage/1.0 ' ,
21
+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
22
22
'file '
23
23
)->item (0 );
24
24
@@ -41,7 +41,7 @@ public function getFunctionObject($name)
41
41
{
42
42
$ node = $ this ->getContextNode ()->appendChild (
43
43
$ this ->getDomDocument ()->createElementNS (
44
- 'http ://schema.phpunit.de/coverage/1.0 ' ,
44
+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
45
45
'function '
46
46
)
47
47
);
@@ -63,7 +63,7 @@ private function getUnitObject($tagName, $name)
63
63
{
64
64
$ node = $ this ->getContextNode ()->appendChild (
65
65
$ this ->getDomDocument ()->createElementNS (
66
- 'http ://schema.phpunit.de/coverage/1.0 ' ,
66
+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
67
67
$ tagName
68
68
)
69
69
);
@@ -74,14 +74,14 @@ private function getUnitObject($tagName, $name)
74
74
public function getSource ()
75
75
{
76
76
$ source = $ this ->getContextNode ()->getElementsByTagNameNS (
77
- 'http ://schema.phpunit.de/coverage/1.0 ' ,
77
+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
78
78
'source '
79
79
)->item (0 );
80
80
81
81
if (!$ source ) {
82
82
$ source = $ this ->getContextNode ()->appendChild (
83
83
$ this ->getDomDocument ()->createElementNS (
84
- 'http ://schema.phpunit.de/coverage/1.0 ' ,
84
+ 'https ://schema.phpunit.de/coverage/1.0 ' ,
85
85
'source '
86
86
)
87
87
);
0 commit comments