@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | * @param array<\SimpleSAML\XML\Attribute> $namespacedAttributes |
41 | 41 | */ |
42 | 42 | final public function __construct( |
43 | - protected SerializableElementInterface|MetadataReference|Location $child, |
|
43 | + protected SerializableElementInterface | MetadataReference | Location $child, |
|
44 | 44 | protected string $Dialect, |
45 | 45 | protected ?string $Identifier = null, |
46 | 46 | array $namespacedAttributes = [], |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * \SimpleSAML\WSSecurity\XML\wsx\MetadataReference| |
60 | 60 | * \SimpleSAML\WSSecurity\XML\wsx\Location) |
61 | 61 | */ |
62 | - public function getChild(): SerializableElementInterface|MetadataReference|Location |
|
62 | + public function getChild(): SerializableElementInterface | MetadataReference | Location |
|
63 | 63 | { |
64 | 64 | return $this->child; |
65 | 65 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * @param array<\SimpleSAML\XML\Attribute> $namespacedAttributes |
45 | 45 | */ |
46 | 46 | final public function __construct( |
47 | - protected Issuer|IssuerName|null $issuer, |
|
47 | + protected Issuer | IssuerName | null $issuer, |
|
48 | 48 | ?IncludeToken $includeToken = null, |
49 | 49 | array $elts = [], |
50 | 50 | array $namespacedAttributes = [], |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @return \SimpleSAML\WSSecurity\XML\sp\Issuer|\SimpleSAML\WSSecurity\XML\sp\IssuerName|null |
62 | 62 | */ |
63 | - public function getIssuer(): Issuer|IssuerName|null |
|
63 | + public function getIssuer(): Issuer | IssuerName | null |
|
64 | 64 | { |
65 | 65 | return $this->issuer; |
66 | 66 | } |
@@ -33,7 +33,7 @@ |
||
33 | 33 | Assert::allIsInstanceOf($ports, Port::class, SchemaViolationException::class); |
34 | 34 | |
35 | 35 | $portNames = array_map( |
36 | - function ($x) { |
|
36 | + function($x) { |
|
37 | 37 | return $x->getName(); |
38 | 38 | }, |
39 | 39 | $ports, |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | Assert::allIsInstanceOf($service, Service::class, SchemaViolationException::class); |
53 | 53 | |
54 | 54 | $messageNames = array_map( |
55 | - function ($x) { |
|
55 | + function($x) { |
|
56 | 56 | return $x->getName(); |
57 | 57 | }, |
58 | 58 | $message, |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | ); |
65 | 65 | |
66 | 66 | $portTypeNames = array_map( |
67 | - function ($x) { |
|
67 | + function($x) { |
|
68 | 68 | return $x->getName(); |
69 | 69 | }, |
70 | 70 | $portType, |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | ); |
77 | 77 | |
78 | 78 | $bindingNames = array_map( |
79 | - function ($x) { |
|
79 | + function($x) { |
|
80 | 80 | return $x->getName(); |
81 | 81 | }, |
82 | 82 | $binding, |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | ); |
89 | 89 | |
90 | 90 | $serviceNames = array_map( |
91 | - function ($x) { |
|
91 | + function($x) { |
|
92 | 92 | return $x->getName(); |
93 | 93 | }, |
94 | 94 | $service, |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | ); |
101 | 101 | |
102 | 102 | $importNamespaces = array_map( |
103 | - function ($x) { |
|
103 | + function($x) { |
|
104 | 104 | return $x->getNamespace(); |
105 | 105 | }, |
106 | 106 | $import, |
@@ -33,7 +33,7 @@ |
||
33 | 33 | Assert::allIsInstanceOf($parts, Part::class, SchemaViolationException::class); |
34 | 34 | |
35 | 35 | $partNames = array_map( |
36 | - function ($x) { |
|
36 | + function($x) { |
|
37 | 37 | return $x->getName(); |
38 | 38 | }, |
39 | 39 | $parts, |