Passed
Push — master ( 167df6...98778c )
by Tim
02:59
created
src/XML/wst_200502/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_200502/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_200502/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_200502/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.