Completed
Push — master ( f5d6e2...c1af51 )
by Julián
01:24
created
src/QueryHandlerLocator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public function __construct(array $handlers)
38 38
     {
39 39
         $handlers = \array_map(
40
-            function ($handler) {
40
+            function($handler) {
41 41
                 if (!\is_array($handler)) {
42 42
                     $handler = [$handler];
43 43
                 }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                     ));
77 77
                 }
78 78
 
79
-                $handlerCallable = function (Query $query) use ($handler) {
79
+                $handlerCallable = function(Query $query) use ($handler) {
80 80
                     return $handler->handle($query);
81 81
                 };
82 82
 
Please login to merge, or discard this patch.
src/ContainerAwareQueryHandlerLocator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
                     ));
63 63
                 }
64 64
 
65
-                $handlerCallable = function (Query $query) use ($handler) {
65
+                $handlerCallable = function(Query $query) use ($handler) {
66 66
                     return $handler->handle($query);
67 67
                 };
68 68
 
Please login to merge, or discard this patch.
src/ContainerAwareCommandHandlerLocator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
                     ));
63 63
                 }
64 64
 
65
-                $handlerCallable = function (Command $command) use ($handler): void {
65
+                $handlerCallable = function(Command $command) use ($handler): void {
66 66
                     $handler->handle($command);
67 67
                 };
68 68
 
Please login to merge, or discard this patch.
src/CommandHandlerLocator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public function __construct(array $handlers)
38 38
     {
39 39
         $handlers = \array_map(
40
-            function ($handler) {
40
+            function($handler) {
41 41
                 if (!\is_array($handler)) {
42 42
                     $handler = [$handler];
43 43
                 }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                     ));
70 70
                 }
71 71
 
72
-                $handlerCallable = function (Command $command) use ($handler): void {
72
+                $handlerCallable = function(Command $command) use ($handler): void {
73 73
                     $handler->handle($command);
74 74
                 };
75 75
 
Please login to merge, or discard this patch.