Passed
Push — master ( 167df6...98778c )
by Tim
02:59
created
src/XML/sp_200507/AbstractIssuedTokenType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     final public function __construct(
54 54
         protected RequestSecurityTokenTemplate $requestSecurityTokenTemplate,
55 55
         protected ?Issuer $issuer = null,
56
-        IncludeToken|string|null $includeToken = null,
56
+        IncludeToken | string | null $includeToken = null,
57 57
         array $elts = [],
58 58
         array $namespacedAttributes = [],
59 59
     ) {
Please login to merge, or discard this patch.
src/XML/sp_200702/AbstractSecureConversationTokenType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      * @param array<\SimpleSAML\XML\Attribute> $namespacedAttributes
42 42
      */
43 43
     final public function __construct(
44
-        protected Issuer|IssuerName|null $issuer,
44
+        protected Issuer | IssuerName | null $issuer,
45 45
         array $elts = [],
46 46
         array $namespacedAttributes = [],
47 47
     ) {
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      *
56 56
      * @return \SimpleSAML\WSSecurity\XML\sp_200702\Issuer|\SimpleSAML\WSSecurity\XML\sp_200702\IssuerName|null
57 57
      */
58
-    public function getIssuer(): Issuer|IssuerName|null
58
+    public function getIssuer(): Issuer | IssuerName | null
59 59
     {
60 60
         return $this->issuer;
61 61
     }
Please login to merge, or discard this patch.
src/XML/sp_200702/AbstractIssuedTokenType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     final public function __construct(
47 47
         protected RequestSecurityTokenTemplate $requestSecurityTokenTemplate,
48
-        protected Issuer|IssuerName|null $issuer = null,
48
+        protected Issuer | IssuerName | null $issuer = null,
49 49
         array $elts = [],
50 50
         array $namespacedAttributes = [],
51 51
     ) {
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      *
60 60
      * @return \SimpleSAML\WSSecurity\XML\sp_200702\Issuer|\SimpleSAML\WSSecurity\XML\sp_200702\IssuerName|null
61 61
      */
62
-    public function getIssuer(): Issuer|IssuerName|null
62
+    public function getIssuer(): Issuer | IssuerName | null
63 63
     {
64 64
         return $this->issuer;
65 65
     }
Please login to merge, or discard this patch.
src/XML/sp_200702/AbstractSpnegoContextTokenType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      * @param array<\SimpleSAML\XML\Attribute> $namespacedAttributes
42 42
      */
43 43
     final public function __construct(
44
-        protected Issuer|IssuerName|null $issuer,
44
+        protected Issuer | IssuerName | null $issuer,
45 45
         array $elts = [],
46 46
         array $namespacedAttributes = [],
47 47
     ) {
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      *
56 56
      * @return \SimpleSAML\WSSecurity\XML\sp_200702\Issuer|\SimpleSAML\WSSecurity\XML\sp_200702\IssuerName|null
57 57
      */
58
-    public function getIssuer(): Issuer|IssuerName|null
58
+    public function getIssuer(): Issuer | IssuerName | null
59 59
     {
60 60
         return $this->issuer;
61 61
     }
Please login to merge, or discard this patch.
src/XML/wst_200512/AbstractComputedKeyOpenEnum.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     public function __construct(array $values)
33 33
     {
34 34
         $values = array_map(
35
-            function (ComputedKeyEnum|string $v): string {
35
+            function(ComputedKeyEnum | string $v): string {
36 36
                 return ($v instanceof ComputedKeyEnum) ? $v->value : $v;
37 37
             },
38 38
             $values,
Please login to merge, or discard this patch.
src/XML/wst_200512/AbstractKeyTypeOpenEnum.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     public function __construct(array $values)
33 33
     {
34 34
         $values = array_map(
35
-            function (KeyTypeEnum|string $v): string {
35
+            function(KeyTypeEnum | string $v): string {
36 36
                 return ($v instanceof KeyTypeEnum) ? $v->value : $v;
37 37
             },
38 38
             $values,
Please login to merge, or discard this patch.
src/XML/wst_200512/AbstractRequestTypeOpenEnum.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     public function __construct(array $values)
33 33
     {
34 34
         $values = array_map(
35
-            function (RequestTypeEnum|string $v): string {
35
+            function(RequestTypeEnum | string $v): string {
36 36
                 return ($v instanceof RequestTypeEnum) ? $v->value : $v;
37 37
             },
38 38
             $values,
Please login to merge, or discard this patch.
src/XML/wst_200512/AbstractStatusCodeOpenEnum.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     public function __construct(array $values)
33 33
     {
34 34
         $values = array_map(
35
-            function (StatusCodeEnum|string $v): string {
35
+            function(StatusCodeEnum | string $v): string {
36 36
                 return ($v instanceof StatusCodeEnum) ? $v->value : $v;
37 37
             },
38 38
             $values,
Please login to merge, or discard this patch.
src/XML/wst_200512/AbstractBinarySecretType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     ) {
46 46
         if ($Type !== null) {
47 47
             $Type = array_map(
48
-                function (BinarySecretTypeEnum|string $v): string {
48
+                function(BinarySecretTypeEnum | string $v): string {
49 49
                     return ($v instanceof BinarySecretTypeEnum) ? $v->value : $v;
50 50
                 },
51 51
                 $Type,
Please login to merge, or discard this patch.