@@ -33,7 +33,7 @@ discard block |
||
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 |
||
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 | } |