@@ -28,7 +28,7 @@ |
||
28 | 28 | */ |
29 | 29 | public function formalize(Settings $settings) |
30 | 30 | { |
31 | - return function () { |
|
31 | + return function() { |
|
32 | 32 | return new TimestampFirstCombGenerator(); |
33 | 33 | }; |
34 | 34 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $pipelineModifications->registerStep( |
40 | 40 | 'LoadHandlersConnector', |
41 | 41 | LoadHandlersConnector::class, |
42 | - function () use ($builder) { |
|
42 | + function() use ($builder) { |
|
43 | 43 | return new LoadHandlersConnector( |
44 | 44 | $builder->build(MessageHandlerRegistry::class), |
45 | 45 | $builder->build(IncomingContextFactory::class) |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | $pipelineModifications->registerStep( |
50 | 50 | 'InvokeHandlerTerminator', |
51 | 51 | InvokeHandlerTerminator::class, |
52 | - function () use ($builder) { |
|
52 | + function() use ($builder) { |
|
53 | 53 | return new InvokeHandlerTerminator(); |
54 | 54 | } |
55 | 55 | ); |
@@ -100,7 +100,7 @@ |
||
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'; |