Test Setup Failed
Push — master ( 093c41...5b5921 )
by Christian
02:27
created
src/Middleware/PerfBudgetLogger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
             $this->getLogger()->log(
48 48
                 (string) $this->logLevel,
49 49
                 'Performance threshold exceeded',
50
-                ['MB' => $totalMegabytesIncrease, 'seconds' => $totalTime, 'query' => get_class($query) ]
50
+                ['MB' => $totalMegabytesIncrease, 'seconds' => $totalTime, 'query' => get_class($query)]
51 51
             );
52 52
         }
53 53
 
Please login to merge, or discard this patch.
src/QueryBus.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     {
34 34
         $next = $this->callStack;
35 35
 
36
-        $this->callStack = function (Interfaces\Query $query) use ($middleware, $next): Interfaces\Result {
36
+        $this->callStack = function(Interfaces\Query $query) use ($middleware, $next): Interfaces\Result {
37 37
             return $middleware($query, $next);
38 38
         };
39 39
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     private function seedCallStack(): callable
49 49
     {
50
-        return function (Interfaces\Query $query): Interfaces\Result {
50
+        return function(Interfaces\Query $query): Interfaces\Result {
51 51
             return $this->resolver->resolve($query)->handle($query, $this);
52 52
         };
53 53
     }
Please login to merge, or discard this patch.