@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | { |
| 36 | 36 | $next = $this->callStack; |
| 37 | 37 | |
| 38 | - $this->callStack = function (Query $query) use ($middleware, $next): Result { |
|
| 38 | + $this->callStack = function(Query $query) use ($middleware, $next): Result { |
|
| 39 | 39 | return $middleware($query, $next); |
| 40 | 40 | }; |
| 41 | 41 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | |
| 50 | 50 | private function seedCallStack(): callable |
| 51 | 51 | { |
| 52 | - return function (Query $query): Result { |
|
| 52 | + return function(Query $query): Result { |
|
| 53 | 53 | return $this->resolver->resolve($query)->handle($query, $this); |
| 54 | 54 | }; |
| 55 | 55 | } |
@@ -47,7 +47,7 @@ |
||
| 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 | |