Passed
Pull Request — master (#299)
by Christoffer
02:24
created
src/Schema/Resolver/AbstractResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function getResolveCallback(): ?callable
30 30
     {
31
-        return function ($rootValue, array $args, $contextValues = null, ?ResolveInfo $info = null) {
31
+        return function($rootValue, array $args, $contextValues = null, ?ResolveInfo $info = null) {
32 32
             return $this->resolve(...\func_get_args());
33 33
         };
34 34
     }
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function getTypeResolver(): ?callable
40 40
     {
41
-        return function ($rootValue, $contextValues = null, ?ResolveInfo $info = null) {
41
+        return function($rootValue, $contextValues = null, ?ResolveInfo $info = null) {
42 42
             return $this->resolveType(...\func_get_args());
43 43
         };
44 44
     }
Please login to merge, or discard this patch.