Completed
Pull Request — master (#59)
by Christoffer
02:52
created
src/Validation/Validator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 
39 39
         $context = $this->contextBuilder->build($schema, $document, $typeInfo);
40 40
 
41
-        $visitors = array_map(function (RuleInterface $rule) use ($context) {
41
+        $visitors = array_map(function(RuleInterface $rule) use ($context) {
42 42
             return $rule->setValidationContext($context);
43 43
         }, $rules ?? specifiedRules());
44 44
 
Please login to merge, or discard this patch.
src/Validation/Rule/FieldOnCorrectTypeRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
 
107 107
         $suggestedInterfaceTypes = array_keys($interfaceUsageCount);
108 108
 
109
-        uasort($suggestedInterfaceTypes, function ($a, $b) use ($interfaceUsageCount) {
109
+        uasort($suggestedInterfaceTypes, function($a, $b) use ($interfaceUsageCount) {
110 110
             return $interfaceUsageCount[$b] - $interfaceUsageCount[$a];
111 111
         });
112 112
 
Please login to merge, or discard this patch.
src/Validation/Rule/KnownDirectivesRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
             /** @var Directive $directiveDefinition */
49 49
             $directiveDefinition = find(
50 50
                 $this->validationContext->getSchema()->getDirectives(),
51
-                function (Directive $definition) use ($node) {
51
+                function(Directive $definition) use ($node) {
52 52
                     return $definition->getName() === $node->getNameValue();
53 53
                 }
54 54
             );
Please login to merge, or discard this patch.
src/Language/Writer/AbstractWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     protected function printNodes(array $nodes): array
38 38
     {
39
-        return array_map(function ($node) {
39
+        return array_map(function($node) {
40 40
             return $this->printer->print($node);
41 41
         }, $nodes);
42 42
     }
Please login to merge, or discard this patch.