Test Failed
Pull Request — 0.1.x (#17)
by lee
02:32
created
src/Container/CommandBusFactory.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
         /** @psalm-suppress MixedArgumentTypeCoercion
22 22
          *  @psalm-suppress MixedArgument
23
-        */
23
+         */
24 24
         return new CommandBus(array_merge(
25 25
             array_map(static function (string $middleware) use ($container) {
26 26
                 return $container->get($middleware);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
          *  @psalm-suppress MixedArgument
23 23
         */
24 24
         return new CommandBus(array_merge(
25
-            array_map(static function (string $middleware) use ($container) {
25
+            array_map(static function(string $middleware) use ($container) {
26 26
                 return $container->get($middleware);
27 27
             }, $config->getMiddleware()),
28 28
             [
Please login to merge, or discard this patch.
src/Container/QueryBusFactory.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
         /** @psalm-suppress MixedArgumentTypeCoercion
23 23
          *  @psalm-suppress MixedArgument
24
-        */
24
+         */
25 25
         return new QueryBus(new CommandBus(array_merge(
26 26
             array_map(static function (string $middleware) use ($container) {
27 27
                 return $container->get($middleware);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
          *  @psalm-suppress MixedArgument
24 24
         */
25 25
         return new QueryBus(new CommandBus(array_merge(
26
-            array_map(static function (string $middleware) use ($container) {
26
+            array_map(static function(string $middleware) use ($container) {
27 27
                 return $container->get($middleware);
28 28
             }, $config->getMiddleware()),
29 29
             [
Please login to merge, or discard this patch.