Completed
Pull Request — devel (#4)
by Alex
05:12
created
src/Pipeline/IncomingPipelineFeature.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
         $pipelineModifications->registerStep(
37 37
             'OutgoingLogicalMessageMutation',
38 38
             OutgoingLogicalMessageMutationPipelineStep::class,
39
-            function () use ($builder) {
39
+            function() use ($builder) {
40 40
                 return new OutgoingLogicalMessageMutationPipelineStep($builder->build(MessageMutatorRegistry::class));
41 41
             }
42 42
         );
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $pipelineModifications->registerStep(
45 45
             'OutgoingPhysicalMessageMutation',
46 46
             OutgoingPhysicalMessageMutationPipelineStep::class,
47
-            function () use ($builder) {
47
+            function() use ($builder) {
48 48
                 return new OutgoingPhysicalMessageMutationPipelineStep($builder->build(MessageMutatorRegistry::class));
49 49
             }
50 50
         );
Please login to merge, or discard this patch.
src/MessageMutation/IncomingMessageMutationFeature.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
         $pipelineModifications->registerStep(
37 37
             'OutgoingLogicalMessageMutation',
38 38
             OutgoingLogicalMessageMutationPipelineStep::class,
39
-            function () use ($builder) {
39
+            function() use ($builder) {
40 40
                 return new OutgoingLogicalMessageMutationPipelineStep($builder->build(MessageMutatorRegistry::class));
41 41
             }
42 42
         );
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $pipelineModifications->registerStep(
45 45
             'OutgoingPhysicalMessageMutation',
46 46
             OutgoingPhysicalMessageMutationPipelineStep::class,
47
-            function () use ($builder) {
47
+            function() use ($builder) {
48 48
                 return new OutgoingPhysicalMessageMutationPipelineStep($builder->build(MessageMutatorRegistry::class));
49 49
             }
50 50
         );
Please login to merge, or discard this patch.
src/Serialization/Json/JsonEncoder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
 
101 101
         array_walk_recursive(
102 102
             $data,
103
-            function (&$value) {
103
+            function(&$value) {
104 104
                 if (is_float($value) && ctype_digit((string)$value)) {
105 105
                     // Due to PHP bug #50224, floats with no decimals are converted to integers when encoded
106 106
                     $value = '(' . self::FLOAT_CASTER . ')' . $value . '.0';
Please login to merge, or discard this patch.