@@ -40,7 +40,7 @@ |
||
40 | 40 | public function __construct( |
41 | 41 | ?NCNameValue $name = null, |
42 | 42 | ?QNameValue $reference = null, |
43 | - LocalSimpleType|LocalComplexType|null $localType = null, |
|
43 | + LocalSimpleType | LocalComplexType | null $localType = null, |
|
44 | 44 | array $identityConstraint = [], |
45 | 45 | ?QNameValue $type = null, |
46 | 46 | ?MinOccursValue $minOccurs = null, |
@@ -42,14 +42,14 @@ |
||
42 | 42 | array $namespacedAttributes = [], |
43 | 43 | ) { |
44 | 44 | parent::__construct( |
45 | - base: $base, |
|
46 | - localSimpleType: $localSimpleType, |
|
47 | - facets: $facets, |
|
48 | - attributes: $attributes, |
|
49 | - anyAttribute: $anyAttribute, |
|
50 | - annotation: $annotation, |
|
51 | - id: $id, |
|
52 | - namespacedAttributes: $namespacedAttributes, |
|
45 | + base : $base, |
|
46 | + localSimpleType : $localSimpleType, |
|
47 | + facets : $facets, |
|
48 | + attributes : $attributes, |
|
49 | + anyAttribute : $anyAttribute, |
|
50 | + annotation : $annotation, |
|
51 | + id : $id, |
|
52 | + namespacedAttributes : $namespacedAttributes, |
|
53 | 53 | ); |
54 | 54 | } |
55 | 55 | } |
@@ -40,13 +40,13 @@ |
||
40 | 40 | array $namespacedAttributes = [], |
41 | 41 | ) { |
42 | 42 | parent::__construct( |
43 | - base: $base, |
|
44 | - particle: $particle, |
|
45 | - attributes: $attributes, |
|
46 | - anyAttribute: $anyAttribute, |
|
47 | - annotation: $annotation, |
|
48 | - id: $id, |
|
49 | - namespacedAttributes: $namespacedAttributes, |
|
43 | + base : $base, |
|
44 | + particle : $particle, |
|
45 | + attributes : $attributes, |
|
46 | + anyAttribute : $anyAttribute, |
|
47 | + annotation : $annotation, |
|
48 | + id : $id, |
|
49 | + namespacedAttributes : $namespacedAttributes, |
|
50 | 50 | ); |
51 | 51 | } |
52 | 52 | } |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * |
20 | 20 | * @var \SimpleSAML\XMLSchema\XML\xs\SimpleContent|\SimpleSAML\XMLSchema\XML\xs\ComplexContent|null |
21 | 21 | */ |
22 | - protected SimpleContent|ComplexContent|null $content = null; |
|
22 | + protected SimpleContent | ComplexContent | null $content = null; |
|
23 | 23 | |
24 | 24 | |
25 | 25 | /** |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * |
28 | 28 | * @return \SimpleSAML\XMLSchema\XML\xs\SimpleContent|\SimpleSAML\XMLSchema\XML\xs\ComplexContent|null |
29 | 29 | */ |
30 | - public function getContent(): SimpleContent|ComplexContent|null |
|
30 | + public function getContent(): SimpleContent | ComplexContent | null |
|
31 | 31 | { |
32 | 32 | return $this->content; |
33 | 33 | } |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | * |
39 | 39 | * @param \SimpleSAML\XMLSchema\XML\xs\SimpleContent|\SimpleSAML\XMLSchema\XML\xs\ComplexContent|null $content |
40 | 40 | */ |
41 | - protected function setContent(SimpleContent|ComplexContent|null $content = null): void |
|
41 | + protected function setContent(SimpleContent | ComplexContent | null $content = null): void |
|
42 | 42 | { |
43 | 43 | $this->content = $content; |
44 | 44 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * @param array<\SimpleSAML\XML\Attribute> $namespacedAttributes |
35 | 35 | */ |
36 | 36 | public function __construct( |
37 | - protected SimpleRestriction|SimpleExtension $content, |
|
37 | + protected SimpleRestriction | SimpleExtension $content, |
|
38 | 38 | ?Annotation $annotation = null, |
39 | 39 | ?IDValue $id = null, |
40 | 40 | array $namespacedAttributes = [], |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * |
49 | 49 | * @return \SimpleSAML\XMLSchema\XML\xs\SimpleRestriction|\SimpleSAML\XMLSchema\XML\xs\SimpleExtension |
50 | 50 | */ |
51 | - public function getContent(): SimpleRestriction|SimpleExtension |
|
51 | + public function getContent(): SimpleRestriction | SimpleExtension |
|
52 | 52 | { |
53 | 53 | return $this->content; |
54 | 54 | } |
@@ -40,13 +40,13 @@ |
||
40 | 40 | array $namespacedAttributes = [], |
41 | 41 | ) { |
42 | 42 | parent::__construct( |
43 | - name: $name, |
|
44 | - attributes: $attributes, |
|
45 | - anyAttribute: $anyAttribute, |
|
46 | - reference: null, |
|
47 | - annotation: $annotation, |
|
48 | - id: $id, |
|
49 | - namespacedAttributes: $namespacedAttributes, |
|
43 | + name : $name, |
|
44 | + attributes : $attributes, |
|
45 | + anyAttribute : $anyAttribute, |
|
46 | + reference : null, |
|
47 | + annotation : $annotation, |
|
48 | + id : $id, |
|
49 | + namespacedAttributes : $namespacedAttributes, |
|
50 | 50 | ); |
51 | 51 | } |
52 | 52 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | * @param array<\SimpleSAML\XML\Attribute> $namespacedAttributes |
32 | 32 | */ |
33 | 33 | public function __construct( |
34 | - Union|XsList|Restriction $derivation, |
|
34 | + Union | XsList | Restriction $derivation, |
|
35 | 35 | NCNameValue $name, |
36 | 36 | ?SimpleDerivationSetValue $final = null, |
37 | 37 | ?Annotation $annotation = null, |
@@ -41,14 +41,14 @@ |
||
41 | 41 | array $namespacedAttributes = [], |
42 | 42 | ) { |
43 | 43 | parent::__construct( |
44 | - name: $name, |
|
45 | - type: $type, |
|
46 | - default: $default, |
|
47 | - fixed: $fixed, |
|
48 | - simpleType: $simpleType, |
|
49 | - annotation: $annotation, |
|
50 | - id: $id, |
|
51 | - namespacedAttributes: $namespacedAttributes, |
|
44 | + name : $name, |
|
45 | + type : $type, |
|
46 | + default : $default, |
|
47 | + fixed : $fixed, |
|
48 | + simpleType : $simpleType, |
|
49 | + annotation : $annotation, |
|
50 | + id : $id, |
|
51 | + namespacedAttributes : $namespacedAttributes, |
|
52 | 52 | ); |
53 | 53 | } |
54 | 54 | } |
@@ -28,10 +28,10 @@ |
||
28 | 28 | array $namespacedAttributes = [], |
29 | 29 | ) { |
30 | 30 | parent::__construct( |
31 | - derivation: $derivation, |
|
32 | - annotation: $annotation, |
|
33 | - id: $id, |
|
34 | - namespacedAttributes: $namespacedAttributes, |
|
31 | + derivation : $derivation, |
|
32 | + annotation : $annotation, |
|
33 | + id : $id, |
|
34 | + namespacedAttributes : $namespacedAttributes, |
|
35 | 35 | ); |
36 | 36 | } |
37 | 37 | } |