Passed
Pull Request — master (#5)
by Yonel Ceruto
08:14
created
src/Util/GraphQLBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         }
54 54
 
55 55
         if (is_numeric($complexity)) {
56
-            return function ($childrenComplexity) use ($complexity) {
56
+            return function($childrenComplexity) use ($complexity) {
57 57
                 return $childrenComplexity + $complexity;
58 58
             };
59 59
         }
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
         $el = new ExpressionLanguage();
67 67
 
68
-        return function ($childrenComplexity, $args) use ($el, $complexity) {
68
+        return function($childrenComplexity, $args) use ($el, $complexity) {
69 69
             return $el->evaluate($complexity, array_merge($args, ['children_complexity' => $childrenComplexity]));
70 70
         };
71 71
     }
Please login to merge, or discard this patch.