File tree Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -27,4 +27,14 @@ public static function xsd(): XmlXmlns
27
27
{
28
28
return XmlXmlns::load ('http://www.w3.org/2001/XMLSchema ' );
29
29
}
30
+
31
+ public static function soap11Envelope (): XmlXmlns
32
+ {
33
+ return XmlXmlns::load ('http://schemas.xmlsoap.org/soap/envelope/ ' );
34
+ }
35
+
36
+ public static function soap12Envelope (): XmlXmlns
37
+ {
38
+ return XmlXmlns::load ('http://www.w3.org/2003/05/soap-envelope/ ' );
39
+ }
30
40
}
Original file line number Diff line number Diff line change @@ -24,19 +24,27 @@ public function provideKnownXmlnses()
24
24
{
25
25
yield 'wsdl ' => [
26
26
static fn () => Xmlns::wsdl (),
27
- 'http://schemas.xmlsoap.org/wsdl/ '
27
+ 'http://schemas.xmlsoap.org/wsdl/ ' ,
28
28
];
29
29
yield 'soap ' => [
30
30
static fn () => Xmlns::soap (),
31
- 'http://schemas.xmlsoap.org/wsdl/soap/ '
31
+ 'http://schemas.xmlsoap.org/wsdl/soap/ ' ,
32
32
];
33
33
yield 'soap12 ' => [
34
34
static fn () => Xmlns::soap12 (),
35
- 'http://schemas.xmlsoap.org/wsdl/soap12/ '
35
+ 'http://schemas.xmlsoap.org/wsdl/soap12/ ' ,
36
36
];
37
37
yield 'xsd ' => [
38
38
static fn () => Xmlns::xsd (),
39
- 'http://www.w3.org/2001/XMLSchema '
39
+ 'http://www.w3.org/2001/XMLSchema ' ,
40
+ ];
41
+ yield 'envelope11 ' => [
42
+ static fn () => Xmlns::soap11Envelope (),
43
+ 'http://schemas.xmlsoap.org/soap/envelope/ ' ,
44
+ ];
45
+ yield 'envelope12 ' => [
46
+ static fn () => Xmlns::soap12Envelope (),
47
+ 'http://www.w3.org/2003/05/soap-envelope/ ' ,
40
48
];
41
49
}
42
50
}
You can’t perform that action at this time.
0 commit comments