Completed
Push — master ( 017e5c...f9ba1a )
by Nil
02:12
created
src/EventBus/EventBus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $current = array_shift($middleware);
39 39
 
40 40
         foreach ($middleware as $eventBusMiddleware) {
41
-            $callable = function ($event) use ($eventBusMiddleware) {
41
+            $callable = function($event) use ($eventBusMiddleware) {
42 42
                 return $eventBusMiddleware($event);
43 43
             };
44 44
 
Please login to merge, or discard this patch.
src/CommandBus/CommandBus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $current = array_shift($middleware);
36 36
 
37 37
         foreach ($middleware as $commandBusMiddleware) {
38
-            $callable = function ($command) use ($commandBusMiddleware) {
38
+            $callable = function($command) use ($commandBusMiddleware) {
39 39
                 return $commandBusMiddleware($command);
40 40
             };
41 41
 
Please login to merge, or discard this patch.
src/QueryBus/QueryBus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 
40 40
         if (!empty($middleware)) {
41 41
             foreach ($middleware as $queryBusMiddleware) {
42
-                $callable = function ($query) use ($queryBusMiddleware) {
42
+                $callable = function($query) use ($queryBusMiddleware) {
43 43
                     return $queryBusMiddleware->__invoke($query);
44 44
                 };
45 45
 
Please login to merge, or discard this patch.