Passed
Branch master (82d3e7)
by Koldo
02:02
created
src/InFw/TacticianAdapter/Factory/CommandBusFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         );
29 29
 
30 30
         return new CommandBus(array_merge(
31
-            array_map(function (string $middleware) use ($container) {
31
+            array_map(function(string $middleware) use ($container) {
32 32
                 return $container->get($middleware);
33 33
             }, $config['middleware']),
34 34
             [$commandHandlerMiddleware]
Please login to merge, or discard this patch.
src/InFw/TacticianAdapter/Factory/QueryBusFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         );
31 31
 
32 32
         return new QueryBus(array_merge(
33
-            array_map(function (string $middleware) use ($container) {
33
+            array_map(function(string $middleware) use ($container) {
34 34
                 return $container->get($middleware);
35 35
             }, $config['middleware']),
36 36
             [$commandHandlerMiddleware]
Please login to merge, or discard this patch.