Passed
Push — master ( 9be4e5...34d4a3 )
by Tim
02:24
created
src/XMLSchema/XML/xs/AbstractTopLevelComplexType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         ?BooleanValue $abstract = null,
40 40
         ?DerivationSetValue $final = null,
41 41
         ?DerivationSetValue $block = null,
42
-        SimpleContent|ComplexContent|null $content = null,
42
+        SimpleContent | ComplexContent | null $content = null,
43 43
         ?TypeDefParticleInterface $particle = null,
44 44
         array $attributes = [],
45 45
         ?AnyAttribute $anyAttribute = null,
Please login to merge, or discard this patch.
src/XMLSchema/XML/xs/AbstractReferencedGroup.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@
 block discarded – undo
33 33
         array $namespacedAttributes = [],
34 34
     ) {
35 35
         parent::__construct(
36
-            reference: $reference,
37
-            annotation: $annotation,
38
-            id: $id,
39
-            namespacedAttributes: $namespacedAttributes,
36
+            reference : $reference,
37
+            annotation : $annotation,
38
+            id : $id,
39
+            namespacedAttributes : $namespacedAttributes,
40 40
         );
41 41
     }
42 42
 }
Please login to merge, or discard this patch.
src/XMLSchema/XML/xs/AbstractSimpleExtensionType.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,12 +37,12 @@
 block discarded – undo
37 37
         array $namespacedAttributes = [],
38 38
     ) {
39 39
         parent::__construct(
40
-            base: $base,
41
-            attributes: $attributes,
42
-            anyAttribute: $anyAttribute,
43
-            annotation: $annotation,
44
-            id: $id,
45
-            namespacedAttributes: $namespacedAttributes,
40
+            base : $base,
41
+            attributes : $attributes,
42
+            anyAttribute : $anyAttribute,
43
+            annotation : $annotation,
44
+            id : $id,
45
+            namespacedAttributes : $namespacedAttributes,
46 46
         );
47 47
     }
48 48
 }
Please login to merge, or discard this patch.
src/XMLSchema/XML/xs/ComplexContent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      * @param array<\SimpleSAML\XML\Attribute> $namespacedAttributes
37 37
      */
38 38
     public function __construct(
39
-        protected ComplexRestriction|Extension $content,
39
+        protected ComplexRestriction | Extension $content,
40 40
         protected ?BooleanValue $mixed = null,
41 41
         ?Annotation $annotation = null,
42 42
         ?IDValue $id = null,
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @return \SimpleSAML\XMLSchema\XML\xs\ComplexRestriction|\SimpleSAML\XMLSchema\XML\xs\Extension
53 53
      */
54
-    public function getContent(): ComplexRestriction|Extension
54
+    public function getContent(): ComplexRestriction | Extension
55 55
     {
56 56
         return $this->content;
57 57
     }
Please login to merge, or discard this patch.
src/XMLSchema/XML/xs/AbstractLocalComplexType.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function __construct(
32 32
         ?BooleanValue $mixed = null,
33
-        SimpleContent|ComplexContent|null $content = null,
33
+        SimpleContent | ComplexContent | null $content = null,
34 34
         ?TypeDefParticleInterface $particle = null,
35 35
         array $attributes = [],
36 36
         ?AnyAttribute $anyAttribute = null,
@@ -39,14 +39,14 @@  discard block
 block discarded – undo
39 39
         array $namespacedAttributes = [],
40 40
     ) {
41 41
         parent::__construct(
42
-            mixed: $mixed,
43
-            content: $content,
44
-            particle: $particle,
45
-            attributes: $attributes,
46
-            anyAttribute: $anyAttribute,
47
-            annotation: $annotation,
48
-            id: $id,
49
-            namespacedAttributes: $namespacedAttributes,
42
+            mixed : $mixed,
43
+            content : $content,
44
+            particle : $particle,
45
+            attributes : $attributes,
46
+            anyAttribute : $anyAttribute,
47
+            annotation : $annotation,
48
+            id : $id,
49
+            namespacedAttributes : $namespacedAttributes,
50 50
         );
51 51
     }
52 52
 }
Please login to merge, or discard this patch.
src/XMLSchema/XML/xs/AbstractExplicitGroup.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,12 +38,12 @@
 block discarded – undo
38 38
         array $namespacedAttributes = [],
39 39
     ) {
40 40
         parent::__construct(
41
-            particles: $nestedParticles,
42
-            minOccurs: $minOccurs,
43
-            maxOccurs: $maxOccurs,
44
-            annotation: $annotation,
45
-            id: $id,
46
-            namespacedAttributes: $namespacedAttributes,
41
+            particles : $nestedParticles,
42
+            minOccurs : $minOccurs,
43
+            maxOccurs : $maxOccurs,
44
+            annotation : $annotation,
45
+            id : $id,
46
+            namespacedAttributes : $namespacedAttributes,
47 47
         );
48 48
     }
49 49
 }
Please login to merge, or discard this patch.
src/XMLSchema/XML/xs/AbstractTopLevelElement.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function __construct(
36 36
         NCNameValue $name,
37
-        LocalSimpleType|LocalComplexType|null $localType = null,
37
+        LocalSimpleType | LocalComplexType | null $localType = null,
38 38
         array $identityConstraint = [],
39 39
         ?QNameValue $type = null,
40 40
         ?QNameValue $substitutionGroup = null,
@@ -49,20 +49,20 @@  discard block
 block discarded – undo
49 49
         array $namespacedAttributes = [],
50 50
     ) {
51 51
         parent::__construct(
52
-            name: $name,
53
-            localType: $localType,
54
-            identityConstraint: $identityConstraint,
55
-            type: $type,
56
-            substitutionGroup: $substitutionGroup,
57
-            default: $default,
58
-            fixed: $fixed,
59
-            nillable: $nillable,
60
-            abstract: $abstract,
61
-            final: $final,
62
-            block: $block,
63
-            annotation: $annotation,
64
-            id: $id,
65
-            namespacedAttributes: $namespacedAttributes,
52
+            name : $name,
53
+            localType : $localType,
54
+            identityConstraint : $identityConstraint,
55
+            type : $type,
56
+            substitutionGroup : $substitutionGroup,
57
+            default : $default,
58
+            fixed : $fixed,
59
+            nillable : $nillable,
60
+            abstract : $abstract,
61
+            final : $final,
62
+            block : $block,
63
+            annotation : $annotation,
64
+            id : $id,
65
+            namespacedAttributes : $namespacedAttributes,
66 66
         );
67 67
     }
68 68
 }
Please login to merge, or discard this patch.
src/XMLSchema/Type/Helper/AbstractAnySimpleType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
      * @param \SimpleSAML\XMLSchema\Type\Helper\ValueTypeInterface|string $other
143 143
      * @return bool
144 144
      */
145
-    public function equals(ValueTypeInterface|string $other): bool
145
+    public function equals(ValueTypeInterface | string $other): bool
146 146
     {
147 147
         if (is_string($other)) {
148 148
             $other = static::fromString($other);
Please login to merge, or discard this patch.
src/XMLSchema/XML/xs/AbstractReferencedAttributeGroup.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@
 block discarded – undo
33 33
         array $namespacedAttributes = [],
34 34
     ) {
35 35
         parent::__construct(
36
-            reference: $reference,
37
-            annotation: $annotation,
38
-            id: $id,
39
-            namespacedAttributes: $namespacedAttributes,
36
+            reference : $reference,
37
+            annotation : $annotation,
38
+            id : $id,
39
+            namespacedAttributes : $namespacedAttributes,
40 40
         );
41 41
     }
42 42
 }
Please login to merge, or discard this patch.